Deletes a block definition and all of it's inserted instances.
Rhino.DeleteBlock (strBlock)
strBlock |
Required. String. The name or identifier of an existing block definition. |
Boolean |
True or false indicating success or failure. |
Null |
On error. |
Dim strBlock
strBlock = Rhino.GetString("Block name to delete")
If Rhino.IsBlock(strBlock) Then
Rhino.DeleteBlock strBlock
End If