Zooms Property

Applies To

Pane object.

Description

Returns a Zooms collection that represents the magnification options for each view (normal view, outline view, page layout view, and so on). Read-only.

See Also

Type property, View object.

Example

This example sets the magnification in normal view to 100 percent for each open window.

For Each myWindow In Windows
    myWindow.ActivePane.Zooms(wdNormalView).Percentage = 100
Next myWindow
This example sets the magnification in page layout view so that an entire page is visible.

ActiveWindow.Panes(1).Zooms(wdPageView).PageFit = wdPageFitFullPage