GH_RhinoScriptInterfaceDisableBanner Method |
Disables the display of the Grasshopper banner during Component loading.
The banner is typically only shown once during a Grasshopper session,
namely when the Editor is first loaded.
Namespace:
Grasshopper.Plugin
Assembly:
Grasshopper (in Grasshopper.dll)
Syntax public void DisableBanner()
Examples Call GrasshopperExampleScript()
Sub GrasshopperExampleScript()
Dim GH
Set GH = Rhino.GetPlugInObject("Grasshopper")
Call GH.DisableBanner()
Call GH.ShowEditor()
Set GH = Nothing
End Sub
See Also