InfoConnect for Unisys VBA Guide
WindowLocation Property
Gets or sets the application window's location.
Syntax
Object.WindowLocation As Point
Example
This sample displays the x and y coordinates of the upper left corner of the workspace window.
Sub Sample_Frame_WindowLocation()
    Dim point As Attachmate_Reflection_Objects.point
    Set point = ThisFrame.WindowLocation
    MsgBox ("The x and y coordinates of the Reflection Desktop are: " & Str(point.x) & ", " & Str(point.y))
End Sub
See Also

 

 


2015 Attachmate

Send Feedback