ActiveReports Developer 7
FitToPagesTall Property
See Also  Example
GrapeCity.ActiveReports.Export.Excel.v7 Assembly > GrapeCity.SpreadBuilder.Printing Namespace > PageSetup Class : FitToPagesTall Property

Glossary Item Box

Returns or sets the number of pages tall to which the worksheet will be scaled when it's printed.

Syntax

Visual Basic (Declaration) 
Public Property FitToPagesTall As System.Short
C# 
public System.short FitToPagesTall {get; set;}

Property Value

Short.

Remarks

If the Zoom property is set to True, this property is ignored.

Example

C#Copy Code
sb.Sheets[0].PageSetup.FitToPagesTall = 2;
sb.Sheets[0].PageSetup.FitToPagesWide = 2;

if (sb.Sheets[0].PageSetup.FitToPage == true)
{
    MessageBox.Show("FitToPage");
}
Visual BasicCopy Code
sb.Sheets(0).PageSetup.FitToPagesTall = 2
sb.Sheets(0).PageSetup.FitToPagesWide = 2

If sb.Sheets(0).PageSetup.FitToPage = True Then
    MsgBox("FitToPage")
End If

See Also