Returns the name of all currently open toolbar collections.
Rhino.ToolbarCollectionNames ()
None.
Array |
The identifiers of all currently open toolbar collections if successful. |
Null |
If not successful, or on error. |
Dim arrNames, strName
arrNames = Rhino.ToolbarCollectionNames
If IsArray(arrNames) Then
For Each strName in arrNames
Rhino.Print strName
Next
End If