Spread Silverlight 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.
SaveFileDialog saveFileDialog = new SaveFileDialog();
saveFileDialog.Filter = "PDF File (.pdf)|*.pdf";
bool? useClick = saveFileDialog.ShowDialog();
if (useClick == true)
{
    var stream = saveFileDialog.OpenFile();

GrapeCity.Windows.SpreadSheet.Data.PrintInfo printset = new GrapeCity.Windows.SpreadSheet.Data.PrintInfo();
printset.ZoomFactor = 2;
cSpreadSheet1.Sheets[0].PrintInfo = printset;

gcSpreadSheet1.SavePDF(stream, 0);
 stream.Dispose();
}
Dim saveFileDialog = New SaveFileDialog()
saveFileDialog.Filter = "PDF File(.pdf)|*.pdf"
Dim useClick As Boolean = saveFileDialog.ShowDialog()
If (useClick = True) Then
Dim stream = saveFileDialog.OpenFile()

Dim printset As New GrapeCity.Windows.SpreadSheet.Data.PrintInfo()
printset.ZoomFactor = 2
GcSpreadSheet1.Sheets(0).PrintInfo = printset
GcSpreadSheet1.SavePDF(stream, 0)
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

PrintInfo Class
PrintInfo Members

 

 


Copyright © GrapeCity, inc. All rights reserved.