expression.Height As Integer
where expression is a variable that represents a Size Object
expression.Height As Integer
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