CLabels:delete
The delete method deletes an instance of the CLabels class. Typically, the object should be deleted when you are finished using it in order to release memory used by the object.
CLabels:delete() |
L = CLabels:new() |
-- create a new instance of the CLabels class. |
... |
-- do something with the CLabels object. |
L:delete() |
-- delete the object and its associated memory. |