Data.DB.TMasterDataLink.Fields

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Fields: TList<TField> read FFields;

C++

__property System::Generics::Collections::TList__1<TField*>* Fields = {read=FFields};

Properties

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

Description

Lists all the field components from the master dataset that are used to establish a link to the detail dataset.

Use Fields to access individual link field components from the master dataset. Fields lists the field components in the master dataset named by the FieldNames property. Datasets use this property to ascertain the current values of the link fields.

Fields is a read-only property. Fields is generated by locating the field components referenced by the FieldNames property in the master dataset.

See Also