Data.DB.TDataSet.FieldList

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
Data.DB.pas
Data.DB.hpp
Unit: Data.DB
Parent: TDataSet

Delphi

property FieldList: TFieldList read FFieldList;

C++

__property TFieldList* FieldList = {read=FFieldList};

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