Returns the name of all currently open toolbar collections.
rhinoscriptsyntax.ToolbarCollectionNames()
rhinoscript.toolbar.ToolbarCollectionNames()
None.
List |
The names of all currently open toolbar collections |
import rhinoscriptsyntax as rs
names = rs.ToolbarCollectionNames()
if names:
for name in names: print name