Data.DB.TArrayField.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

__fastcall virtual TArrayField(System::Classes::TComponent* AOwner);

Properties

Type Visibility Source Unit Parent
constructor public
Data.DB.pas
Data.DB.hpp
Data.DB TArrayField

Description

Creates an instance of TArrayField.

Most applications do not need to explicitly create TArrayField instances. These are created automatically by the dataset.

Create calls the inherited TField constructor, sets the DataType to ftArray, and sets the Size to 10. The AOwner parameter specifies the owner of the field (typically, the dataset). The owner is responsible for freeing the field component.

See Also