ToolbarCollectionPath

Returns the full path to a currently open toolbar collection file.

Syntax

rhinoscriptsyntax.ToolbarCollectionPath(name)

rhinoscript.toolbar.ToolbarCollectionPath(name)

Parameters

name

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

Returns

String

The full path to the toolbar collection if successful.

None

If not successful, or on error.

Example

import rhinoscriptsyntax as rs

names = rs.ToolbarCollectionNames()

if names:

    for name in names: print rs.ToolbarCollectionPath(name)

Also See

CloseToolbarCollection

IsToolbarCollection

OpenToolbarCollection

ToolbarCollectionCount

ToolbarCollectionNames