SaveToolbarCollectionAs

Saves an open toolbar collection to a different disk file.

Syntax

rhinoscriptsyntax.SaveToolbarCollectionAs(name, file)

rhinoscript.toolbar.SaveToolbarCollectionAs(name, file)

Parameters

name

Required.  String.  The name of a currently open toolbar collection.

file

Required.  String.  The full path to the toolbar collection file to create.

Returns

Boolean

True or False indicating success or failure.

Example

import rhinoscriptsyntax as rs

name = "Default"

file = "D:\\NewDefault.rui"

rs.SaveToolbarCollectionAs(name,file)

Also See

SaveToolbarCollection