Data.DB.TDataSet.NestedDataSets

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

property NestedDataSets: TList<TDataSet> read GetNestedDataSets;

C++

__property System::Generics::Collections::TList__1<TDataSet*>* NestedDataSets = {read=GetNestedDataSets};

Description

Lists all nested datasets.

NestedDataSets is a list of the nested detail sets belonging to the dataset. Each entry in the list is a dataset of the type specified by NestedDataSetClass.

Do not use NestedDataSets to assign values to dataset fields. Instead, set the DataSetField property of the detail set to reference the appropriate field component.

See Also