Verifies an object is a picture frame object.
Rhino.IsPictureFrame (strObject)
strObject |
Required. String. The object's identifier. |
Boolean |
True if successful, otherwise False. |
Null |
On error. |
Dim strObject
strObject = Rhino.GetObject("Select a picture frame")
If Rhino.IsPictureFrame(strObject) Then
Rhino.Print "The object is a picture frame."
Else
Rhino.Print "The object is not a picture frame."
End If