PageSetup.FitToPagesWide Property

Excel Developer Reference

Returns or sets the number of pages wide the worksheet will be scaled to when it's printed. Applies only to worksheets. Read/write Variant.

Syntax

expression.FitToPagesWide

expression   A variable that represents a PageSetup object.

Remarks

If this property is False, Microsoft Excel scales the worksheet according to the FitToPagesTall property.

If the Zoom property is True, the FitToPagesWide property is ignored.

Example

This example causes Microsoft Excel to print Sheet1 exactly one page wide and tall.

Visual Basic for Applications
  With Worksheets("Sheet1").PageSetup
    .Zoom = False
    .FitToPagesTall = 1
    .FitToPagesWide = 1
End With

See Also