Data.DB.TDataSet.FieldList

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property FieldList: TFieldList read FFieldList;

C++

__property TFieldList* FieldList = {read=FFieldList};

Properties

Type Visibility Source Unit Parent
property public
Data.DB.pas
Data.DB.hpp
Data.DB TDataSet

Description

Lists the field components of a dataset.

FieldList contains the names of all field components in the dataset. The fields are stored sequentially, or flattened out, meaning any child fields of an object field are stored as siblings in the TFieldList . ::Fields array.

See Also