ProtectedViewWindow.Width Property (Word)
Returns or sets the width, in points, of the specified protectd view window. Read/write Long.
Version Information
Version Added: Word 2010
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