Hi can any one help me how to move crystal report Line (left position) run time.
I have designed a new dynamic report all text box are moveable left and right but i am not able to move the line object like text box. Pleaes help me how i can solve this problem. If possible please provide me runnign code.
ReportDocument reportDocument = new CrystalReport1();
ReportObject reportObject = reportDocument.ReportDefinition.ReportObjects["Line1"];
LineObject lineObject = (LineObject)reportObject;
int top = lineObject.Top;
int bottom = lineObject.Bottom;
lineObject.Top = 500;
lineObject.Left = 2000;
crystalReportViewer1.ReportSource = reportDocument;