Spread WPF Documentation
ZoomFactor Property (PrintInfo)
Example 


Gets or sets the zoom factor used for printing.
Syntax
'Declaration
 
<System.ComponentModel.DefaultValueAttribute()>
Public Property ZoomFactor As System.Double
'Usage
 
Dim instance As PrintInfo
Dim value As System.Double
 
instance.ZoomFactor = value
 
value = instance.ZoomFactor
[System.ComponentModel.DefaultValue()]
public System.double ZoomFactor {get; set;}

Property Value

A value that specifies the amount to enlarge or reduce the printed worksheet. The default value is 1.
Remarks
Specify the value as a number between 0.1 (10% zoom) and 4 (400% zoom).
Example
This example uses the ZoomFactor property.
GrapeCity.Windows.SpreadSheet.Data.PrintInfo printset = new GrapeCity.Windows.SpreadSheet.Data.PrintInfo();
printset.ZoomFactor = 2;
cSpreadSheet1.Sheets[0].PrintInfo = printset;
gcSpreadSheet1.SavePDF("c:\\zipfile\\test.pdf", 0);
Dim printset As New GrapeCity.Windows.SpreadSheet.Data.PrintInfo()
printset.ZoomFactor = 2
GcSpreadSheet1.Sheets(0).PrintInfo = printset
GcSpreadSheet1.SavePDF("c:\zipfile\test.pdf", 0)
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional (SP4), Windows XP (SP2), Windows 2008, Windows 2003 Server (SP1)

See Also

Reference

PrintInfo Class
PrintInfo Members

 

 


Copyright © GrapeCity, inc. All rights reserved.