RhinoScript's Grasshopper Methods List?

Using the following python script

import Rhino

gh = Rhino.RhinoApp.GetPlugInObject("Grasshopper")
for func in dir(gh):
    if not func.startswith('_'): print func

I get the output of
AssignDataToParameter
BakeDataInObject
CloseAllDocuments
CloseDocument
DisableBanner
DisableSolver
EnableBanner
EnableSolver
HideEditor
IsEditorLoaded
IsEditorVisible
IsSolverEnabled
LoadEditor
MemberwiseClone
OpenDocument
ReferenceEquals
RunSolver
SaveDocument
SaveDocumentAs
SetSliderRangeAndValue
SetSliderValue
ShowEditor

I don’t know what the parameters are, but that is the quick list :smile:

1 Like