Topsolid online Help Index
Created : v6.5
IElement.Delete
This method deletes the element.
None.
It is good practice to set the element pointer to Nothing just after calling this method, as the element does not exist anymore, and trying to access it through the pointer will then cause a crash :
Dim Elt As TopSolid.Element
...
Elt.Delete
Set Elt = Nothing
...
Topsolid online Help Index