TQ3ElementDeleteMethod
You can define a method to delete (that is, dispose of) your custom element types.
typedef TQ3Status (*TQ3ElementDeleteMethod) ( void *internalElement);
internalElement- A pointer to the element data associated with an element having your custom element type.
DESCRIPTION
YourTQ3ElementDeleteMethodfunction should perform whatever operations are necessary to dispose of the element data specified by theinternalElementparameter.RESULT CODES
YourTQ3ElementDeleteMethodfunction should returnkQ3Successif it is successful andkQ3Failureotherwise.