Destructor for the class instance.
Source position: grids.pas line 593
public destructor TGridColumn.Destroy; override; |
Destroy is the overridden destructor for the class instance. Destroy ensures that resources allocated for members in the class instance are freed (when needed), including:
Destroy calls the inherited destructor prior to exiting from the method.
TCollectionItem.Destroy |