Opens an existing toolbar collection file.
Rhino.OpenToolbarCollection (strFile)
strFile |
Required. String. The full path to the toolbar collection file to open. |
String |
The Rhino-assigned name of the toolbar collection if successful. |
Null |
If not successful, or on error. |
Dim strFile, strName
strFile = "C:\Program Files\Rhinoceros\System\Default.tb"
strName = Rhino.IsToolbarCollection(strFile)
If (VarType(strName) = Null) Then
Rhino.OpenToolbarCollection strFile
End If