or
using (System.Windows.Forms.PrintDialog printDlg = new System.Windows.Forms.PrintDialog()) |
{ |
printDlg.AllowSomePages = true; |
printDlg.AllowCurrentPage = false; |
printDlg.UseEXDialog = true; |
if (System.Windows.Forms.DialogResult.OK == printDlg.ShowDialog()) |
{ |
Telerik.Reporting.Processing.ReportProcessor reportProcessor = new Telerik.Reporting.Processing.ReportProcessor(); |
reportProcessor.PrintReport(report, printDlg.PrinterSettings); |
} |
} |
Panel1.Location.X.Add(
new Telerik.Reporting.Drawing.Unit(0.03, Telerik.Reporting.Drawing.UnitType.Cm));
But i don't see it gets changed. I've another panel at Location.X = 0.03cm which is made invisible at runtime. Is there anyway to change the location of control at run time?
Thanks in advance.