Saves an open toolbar collection to a different disk file.
rhinoscriptsyntax.SaveToolbarCollectionAs(name, file)
rhinoscript.toolbar.SaveToolbarCollectionAs(name, file)
name |
Required. String. The name of a currently open toolbar collection. |
file |
Required. String. The full path to the toolbar collection file to create. |
Boolean |
True or False indicating success or failure. |
import rhinoscriptsyntax as rs
name = "Default"
file = "D:\\NewDefault.rui"
rs.SaveToolbarCollectionAs(name,file)