Zoom Object

Description

Contains magnification options (for example, the zoom percentage) for a window or pane. The Zoom object is a member of the Zooms collection.

Using the Zoom Object

Use the Zoom property of the View object to return a single Zoom object. The following example sets the zoom percentage for the active window to 110 percent.

ActiveWindow.View.Zoom.Percentage = 110
Use Zooms(index), where index identifies the view type, to return a single Zoom object. The view type specified by index can be one of the following WdViewType constants: wdMasterView, wdNormalView, wdOnlineView, wdOutlineView, wdPageView, or wdPrintPreview. The following example sets the page layout magnification for active window so that an entire page is visible.

ActiveWindow.ActivePane.Zooms(wdPageView).PageFit = wdPageFitFullPage
The Add method isn't available for the Zooms collection. The Zooms collection includes a single Zoom object for each of the various view types (outline, normal, page layout, and so on).

Properties

Application property, Creator property, PageColumns property, PageFit property, PageRows property, Parent property, Percentage property.