Returns the full path to a currently open toolbar collection file.
rhinoscriptsyntax.ToolbarCollectionPath(name)
rhinoscript.toolbar.ToolbarCollectionPath(name)
name |
Required. String. The name of a currently open toolbar collection. |
String |
The full path to the toolbar collection if successful. |
None |
If not successful, or on error. |
import rhinoscriptsyntax as rs
names = rs.ToolbarCollectionNames()
if names:
for name in names: print rs.ToolbarCollectionPath(name)