TObject.CleanupInstance
Finalize the class instance.
Declaration
Source position: objpash.inc line 219
public
procedure CleanupInstance;
Description
CleanUpinstance finalizes the instance, i.e. takes care of all reference counted objects, by decreasing their reference count by 1, and freeing them if their count reaches zero.
Normally, CleanupInstance should never be called, it is called automatically when the object is freed with it's constructor.
Errors
None.
See also
Name | Description |
---|---|
Destroy | TObject destructor. |
Free | Check for Nil and call destructor. |
InitInstance | Initialize a new class instance. |