Verifies that an object is a block definition object.
Rhino.IsBlockObject (strObject)
strObject |
Required. String. The identifier of an existing object. |
Boolean |
True or false indicating success or failure. |
Null |
On error. |
Dim arrObjects, strObject
arrObjects = Rhino.AllObjects
For Each strObject in arrObjects
If Rhino.IsBlockObject(strObject) Then
Rhino.Print strObject & " is block definition geometry."
End If
Next