PageFit Property

Microsoft Word Visual Basic

Show All

PageFit Property

       

Returns or sets the view magnification of a window so that either the entire page is visible or the entire width of the page is visible. Read/write WdPageFit.

WdPageFit can be one of these WdPageFit constants.
wdPageFitBestFit
wdPageFitFullPage
wdPageFitNone
wdPageFitTextFit

expression.PageFit

expression   Required. An expression that returns a Zoom object.

Remarks

The wdPageFitFullPage constant has no effect if the document isn't in print view.

When the PageFit property is set to wdPageFitBestFit, the zoom percentage is automatically recalculated every time the document window size is changed. Setting this property to wdPageFitNone keeps the zoom percentage from being recalculated whenever this happens.

Example

This example changes the magnification percentage of the window for Letter.doc so that the entire width of the text is visible.

With Windows("Letter.doc").View
    .Type = wdNormalView
    .Zoom.PageFit = wdPageFitBestFit
End With

This example switches the active window to print view and changes the magnification so that the entire page is visible.

With ActiveDocument.ActiveWindow.View
    .Type = wdPrintView
    .Zoom.PageFit = wdPageFitFullPage
End With