Data.DB.TFieldDef.Destroy

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

destructor Destroy; override;

C++

__fastcall virtual ~TFieldDef();

Properties

Type Visibility Source Unit Parent
destructor public
Data.DB.pas
Data.DB.hpp
Data.DB TFieldDef

Description

Destroys the TFieldDef instance and frees its memory.

Destroy calls the inherited Destroy method, and then frees and child field definition objects.

An application will seldom need to destroy a TFieldDef object using this method. Instead, call the Free method, inherited from TObject.

See Also