Verifies the existence of an object.
Rhino.IsObject (strObject)
strObject |
Required. String. The identifier of an object. |
True |
The object exists. |
False |
The object does not exist. |
Dim strObject
'Do something here...
If Rhino.IsObject(strObject) Then
Rhino.Print "The object exists."
Else
Rhino.Print "The object does not exist."
End If