Data.DB.TDetailDataLink.GetDetailDataSet

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

function GetDetailDataSet: TDataSet; virtual;

C++

virtual TDataSet* __fastcall GetDetailDataSet();

Description

Returns the value of the DetailDataSet property.

GetDetailDataSet is the protected read implementation of the DetailDataSet property. As implemented in TDetailDataLink, GetDetailDataSet always returns nil (Delphi) or NULL (C++). Descendants override this method to return the dataset that uses the data link to link to a master dataset.

See Also