Spread Silverlight Documentation
FitPagesTall Property
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > PrintInfo Class : FitPagesTall Property
Gets or sets the number of vertical pages to check when optimizing printing.
Syntax
'Declaration
 
<System.ComponentModel.DefaultValueAttribute()>
Public Property FitPagesTall As System.Integer
'Usage
 
Dim instance As PrintInfo
Dim value As System.Integer
 
instance.FitPagesTall = value
 
value = instance.FitPagesTall
[System.ComponentModel.DefaultValue()]
public System.int FitPagesTall {get; set;}

Property Value

The number of vertical pages to check.
Example
This example uses the FitPagesTall 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.FitPagesTall = 1;
printset.FitPagesWide = 1;
printset.ShowBorder = true;
printset.ShowColumnHeader = GrapeCity.Windows.SpreadSheet.Data.VisibilityType.Show;
printset.ShowRowHeader = GrapeCity.Windows.SpreadSheet.Data.VisibilityType.Show;
printset.ShowGridLine = true;
gcSpreadSheet1.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.FitPagesTall = 1
printset.FitPagesWide = 1
printset.ShowBorder = True
printset.ShowColumnHeader = GrapeCity.Windows.SpreadSheet.Data.VisibilityType.Show
printset.ShowRowHeader = GrapeCity.Windows.SpreadSheet.Data.VisibilityType.Show
printset.ShowGridLine = True
GcSpreadSheet1.Sheets(0).PrintInfo = printset
GcSpreadSheet1.SavePDF(stream, 0)
See Also

Reference

PrintInfo Class
PrintInfo Members