Explodes a block instance into it's geometric components. The exploded objects are added to the document.
Rhino.ExplodeBlockInstance (strObject)
strObject |
Required. String. The identifier of an existing block definition. |
Array |
An array of strings identifying the newly exploded objects if successful. |
Null |
If not successful, or on error. |
Dim strObject
strObject = Rhino.GetObject("Select block instance to explode")
If Rhino.IsBlockInstance(strObject) Then
Rhino.ExplodeBlockInstance strObject
End If