J.
J.Nagarajan
Syncfusion Team
January 5, 2007 11:12 PM UTC
Hi Lan
We regret for the inconvenience caused. We have made many changes to the SourceCodes of v.4.4.0.51 to make the product more flexible. Please change the code 'activeDiagram.View.PrintZoom' to activeDiagram.Controller.View.PrintZoom. Please refer to the following code snippet and modify this in your application
if ( dlg.radio1.Checked )
{
this.activeDiagram.Controller.View.PrintZoom.UsePrintingZoom=true;
this.activeDiagram.Controller.View.PrintZoom=float.Parse(Regex.Replace(dlg.comboBox1.Text, "%", ""));
}
else
{
this.activeDiagram.Controller.View.PrintZoom.UsePrintingZoom=true;
this.activeDiagram.Controller.View.PrintZoom.SheetsAcross=int.Parse(dlg.SheetsAcross);
this.activeDiagram.Controller.View.PrintZoom.SheetsDown=int.Parse(dlg.SheetsDown);
}
I hope the above code lines will resolve your problem. Please let me know if you have any problem in this version.
Thanks,
Nagaraj