Removed a new named view from the document.
Rhino.DeleteNamedView (strName)
strName |
Required. String. The name of the named view to remove. |
Boolean |
True or False indicating success or failure. |
Null |
On error. |
Dim arrViews, strView
arrViews = Rhino.NamedViews
If IsArray(arrViews) Then
For Each strView In arrViews
Rhino.DeleteNamedView strView
Next
End If