Setting the Default Zoom Percentage
To set the default zoom percentage, set the ZoomPercent property. Add the following code to the Form_Load event after the EndDoc method:
Me.C1PrintPreview1.C1PreviewPane.ZoomPercent = "35"
• C#
this.c1PrintPreview1.C1PreviewPane.ZoomPercent = "35";
This topic illustrates the following:
The default zoom percentage is set to 35%.
|