Zoom.Percentage property (Word)

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

Syntax

expression. Percentage

expression An expression that returns a 'Zoom' object.

Example

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

With ActiveDocument.ActiveWindow.View 
 .Type = wdNormalView 
 .Zoom.Percentage = 80 
End With

This example increases the magnification of the active window by 10 percent.

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

See also

Zoom Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.