Percentage Property

Applies To

Zoom object.

Description

Returns or sets the magnification for a window as a percentage. Read/write Long.

See Also

PageFit property, Scaling property, Zoom object.

Example

This example switches the active window to normal view and sets the magnification to 80 percent.

With ActiveWindow.View
    .Type = wdNormalView
    .Zoom.Percentage = 80
End With
This example increases the magnification of the active window by 10 percent.

Set myZoom = ActiveWindow.View.Zoom
myZoom.Percentage = myZoom.Percentage + 10