InfoConnect for Unisys VBA Guide
WindowSize Property
Gets or sets the application window's size.
Syntax
Object.WindowSize As Size
Example
This sample gets the window size and displays the height and width of the workspace window.
Sub Sample_Frame_WindowSize()
    Dim size As Attachmate_Reflection_Objects.size
    Set size = ThisFrame.WindowSize
    MsgBox ("The width of the Reflection Desktop is " & Str(size.Width) & " pixels" & " and the height is " & Str(size.Height) & " pixels")
End Sub
See Also

 

 


2015 Attachmate

Send Feedback