Grasshopper API
GH_RhinoScriptInterfaceEnableBanner Method |
Enables 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)
VBScript
Call GrasshopperExampleScript() Sub GrasshopperExampleScript() Dim GH Set GH = Rhino.GetPlugInObject("Grasshopper") Call GH.EnableBanner() Call GH.ShowEditor() Set GH = Nothing End Sub