Verifies that the specified view exists.
Rhino.IsView (strView)
strView |
Required. String. The title or identifier of the view. |
Boolean |
True or False indicating success or failure. |
Null |
On error. |
Dim blnResult, strTitle
strTitle = "Perspective"
blnResult = Rhino.IsView(strTitle)
If blnResult = True Then
Rhino.Print "The " & strTitle & " view exists."
Else
Rhino.Print "The " & strTitle & " view does not exist."
End If