Data.DB.TFieldDef.ChildDefs

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ChildDefs: TFieldDefs read GetChildDefs write SetChildDefs stored HasChildDefs;

C++

__property TFieldDefs* ChildDefs = {read=GetChildDefs, write=SetChildDefs, stored=HasChildDefs};

Properties

Type Visibility Source Unit Parent
property published
Data.DB.pas
Data.DB.hpp
Data.DB TFieldDef

Description

Specifies the TFieldDefs object that contains an array of child fields.

If the field that the TFieldDef object represents is an object field such as TADTField or TArrayField, child fields of the object field are stored in the TFieldDefs array referenced by the ChildDefs property.

Note: You can't create tables that contain object fields. ChildDefs is only used in field definitions that reflect an existing dataset, not field definitions that are used to create a new dataset.

See Also