Hides a previously visible toolbar in a currently open toolbar collection.
Rhino.HideToolbar (strName, strToolbar)
strName |
Required. String. The name of a currently open toolbar collection. |
strToolbar |
Required. String. The name of a toolbar in the collection to hide. |
Boolean |
True or false indicating success or failure. |
Null |
On error. |
Dim strFile, strName
strFile = "C:\Program Files\Rhinoceros\System\Default.tb"
strName = Rhino.IsToolbarCollection(strFile)
If Not IsNull(strName) Then
Rhino.HideToolbar strName, "Layer"
End If