API:IBX.IBCustomDataSet.TIBStringField.Destroy

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

destructor Destroy; override;

C++

__fastcall virtual ~TIBStringField();

Properties

Type Visibility Source Unit Parent
destructor public
IBX.IBCustomDataSet.pas
IBX.IBCustomDataSet.hpp
IBX.IBCustomDataSet TIBStringField

Description

Destroys an instance of TField.

IBX.IBCustomDataSet.TIBStringField.Destroy inherits from Data.DB.TField.Destroy. All content below this line refers to Data.DB.TField.Destroy.

Destroys an instance of TField.

Do not call Destroy directly in an application. Destroy is called automatically by the dataset that owns the field component, and applications never need to call it explicitly. If an application creates a descendant of TField without an owner, it should call Free instead of Destroy, to guard against nil values.

Destroy closes the dataset, deletes the instance of TField from the dataset, and calls the inherited destructor.

See Also