Returns a list of registered Rhino plug-ins.
rhinoscriptsyntax.PlugIns (types=0, status=0)
rhinoscript.application.PlugIns (types=0, status=0)
types |
Optional. Number. The type or types of plug-ins to return. Plug-in types can be added together to filter several different kinds of plug-ins. If omitted, all plug-in types are returned.
|
||||||||||||||
status |
Optional. Number. The status, either loaded or unloaded, of the plug-ins to return. If omitted, both loaded and unloaded plug-ins are returned.
|
List |
A list of strings describing the plug-ins if successful. |
import rhinoscriptsyntax as rs
plugins = rs.PlugIns(0, 1)
for plugin in plugins: print plugin