ProtectedViewWindow.Top Property (Word)
Returns or sets the vertical position, in points, of the specified protected view window. Read/write Long
Version Information
Version Added: Word 2010
Syntax
expression .Top
expression An expression that returns a ProtectedViewWindow object.
Example
The following code example sets the vertical position of the active protected view window to 100 point.
With ActiveProtectedViewWindow
.WindowState = wdWindowStateNormal
.Left = 0
.Top = 100
End With