ProtectedViewWindow.Width property (Word)

Returns or sets the width, in points, of the specified Protected View window. Read/write Long.

Syntax

expression.Width

expression An expression that returns a 'ProtectedViewWindow' object.

Example

The following code example changes the state, height, and width of the active Protected View window.

With ActiveProtectedViewWindow 
 .WindowState = wdWindowStateNormal 
 .Height = 400 
 .Width = 500 
End With 

See also

ProtectedViewWindow 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.