Objects represent major functional areas. Currently, Frame is the only supported object moniker. See each supported object's documentation for its moniker.
Sub MaximizeWorkspace()
'Dimension a frame variable
Dim f As Attachmate_Reflection_Objects.Frame
'Get the running frame object
Set f = Application.GetObject("Frame")
f.WindowState = FormWindowState_Maximized
End Sub