Rhino.ExplodeHatch (strObject [, blnDelete])
strHatch |
Required. String. The identifier of an object. |
blnDelete |
Optional. Boolean. Delete the hatch object. The default is to not delete the hatch object (False). |
Array |
An array of strings identifying the newly created objects if successful. |
Null |
On error. |
Dim strObject
strObject = Rhino.GetObject("Select object")
If Rhino.IsHatch(strObject) Then
Rhino.ExplodeHatch strObject, True
End If