ToolbarCollectionPath

返回一个已打开的工具列收藏夹文件的完整路径。

语法

rhinoscriptsyntax.ToolbarCollectionPath(name)

rhinoscript.toolbar.ToolbarCollectionPath(name)

参数

name

必须参数。字符串。当前打开工具列收藏夹的名称。

返回值

字符串

工具列收藏夹的完整路径。

None

如果执行不成功或出错,返回空值。

示例

import rhinoscriptsyntax as rs

names = rs.ToolbarCollectionNames()

if names:

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

同见

CloseToolbarCollection

IsToolbarCollection

OpenToolbarCollection

ToolbarCollectionCount

ToolbarCollectionNames