Data.DB.TField.DataSet

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: TField

Delphi

property DataSet: TDataSet read FDataSet write SetDataSet stored False;

C++

__property TDataSet* DataSet = {read=FDataSet, write=SetDataSet, stored=false};

Description

Identifies the dataset to which a field component belongs.

Check the value of DataSet to determine the dataset that uses the field component to represent one of its fields. Applications should not directly assign the DataSet property of a field. It is assigned automatically when the field is created from a TFieldDef object.

See Also