Grasshopper API
GH_RhinoScriptInterfaceHideEditor Method |
Hide the main Grasshopper Editor.
If the editor hasn't been loaded or if the Editor is already hidden, nothing will happen.
Namespace: Grasshopper.Plugin
Assembly: Grasshopper (in Grasshopper.dll)
VBScript
Call GrasshopperExampleScript() Sub GrasshopperExampleScript() Dim GH Set GH = Rhino.GetPlugInObject("Grasshopper") Call GH.HideEditor() Set GH = Nothing End Sub