Visual Basic (Declaration) | |
---|---|
Public ReadOnly Property FitToPage As System.Boolean |
C# | |
---|---|
public System.bool FitToPage {get;} |
Property Value
Boolean. The default value is False.If FitToPagesWide or FitToPagesTall was set since the last Zoom, this property will return True to indicate that the FitToPage option in the Page Setup dialog is selected. If Zoom was set since FitToPagesWide or FitToPagesTall (or none of these properties were set at all) this property returns False, indicating that the zoom/percentage scaling option is selected.
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 Basic | Copy 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 |