Removed a new named construction plane from the document.
Rhino.DeleteNamedCPlane (strName)
strName |
Required. String. The name of the named construction plane to remove. |
Boolean |
True or False indicating success or failure. |
Null |
On error. |
Dim arrCPlanes, strCPlane
arrCPlanes = Rhino.NamedCplanes
If IsArray(arrCPlanes) Then
For Each strCPlane In arrCPlanes
Rhino.DeleteNamedCPlane strCPlane
Next
End If