Window.Left property (Publisher)

Returns or sets a Long indicating the position (in points) of the left edge of the application window relative to the left edge of the screen. Read/write.

Syntax

expression.Left

expression A variable that represents a Window object.

Example

This example sets the horizontal position of the active window to 100 points.

With ActiveDocument.ActiveWindow 
 .WindowState = pbWindowStateNormal 
 .Left = 100 
 .Top = 0 
End With

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.