API Documentation > CorelDRAW > 2025-v26 > Window > IVGWindow
Window.Left property
Gets or sets the window's left value
Syntax:
Property Get Left() As Long
Property Let Left(ByVal Value As Long)
Remarks:
The Left property returns or specifies the left coordinate of a window. This value is measured in screen pixels.
Examples:
The following VBA example displays the left coordinate of the active window.
Sub Test()
MsgBox "The left coordinate of this window is: " & ActiveWindow.Left 
End Sub