Rhino Python Script. Functions help & description. Frange

Where can I find description for all rhinoscript functions and methods?
I looked into RhinoScriptSyntax Help page:
https://developer.rhino3d.com/api/RhinoScriptSyntax/

But couldnt find description for “rs.frange”, for example.

If you type the command in the pythonscripteditor you will get some information showing up in the status bar below:

1 Like

Hi,
You can also use

import inspect
inspect.getsource(rs.frange)
1 Like