Attachmate.Reflection.Objects Library (User Interface) > Size Object : Width Property |
Object.Width As Long
The default value and the range of values vary depending on your monitor.
InfoConnect may adjust the height you specify for your terminal window to accommodate your monitor's size and resolution.
Sub Sample_Frame_WindowSize() Dim size As Attachmate_Reflection_Objects.size Set size = ThisFrame.WindowSize MsgBox ("The width of the InfoConnect Desktop is " & Str(size.Width) & " pixels" & " and the height is " & Str(size.Height) & " pixels") End Sub