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