返回一个已打开的工具列收藏夹文件的完整路径。
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)