Attachmate.Reflection.Objects Library (User Interface) > Frame Object : WindowSize Property |
Object.WindowSize As Size
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