Left property (Application object)

Returns or sets the distance, in pixels, between the external left edge of the main window and the left edge of the desktop. Read/write. Long.
Syntax
Application
.
Left
[ =
value
]
where
Application
– is the name of a
FactoryTalk View SE
Client Application object or an expression that evaluates to a
FactoryTalk View SE
Client Application object.
value
– is the distance, in pixels, between the external left edge of the main window and the left edge of the desktop.
Remarks
When the main window is minimized, the position changes to match the location of the window icon in the lower left portion of the desktop.
The Application object's
Left
property will take precedence over VBA's
Left
string function. If you write code in which you want to call the VBA function, you must specify it explicitly using the syntax VBA.Left as illustrated in the following example.
Sub Test() pos=Left Msgbox pos a$=VBA.Left("abcd",2) Msgbox a$ End Sub
Provide Feedback
Have questions or feedback about this documentation? Please submit your feedback here.
Normal