Toggles a view's maximized/restore window state of the specified view.
Rhino.MaximizeRestoreView (strView)
strView |
Optional. String. The title or identifier of the view. If omitted, the current active view is used. |
Null.
Dim blnResult, strTitle
strTitle = Rhino.CurrentView
blnResult = Rhino.IsViewMaximized(strTitle)
If blnResult = True Then
Rhino.MaximizeRestoreView strTitle
End If