API:IBX.IBCustomDataSet.TIBDataLink.GetDetailDataSet

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetDetailDataSet: TDataSet; override;

C++

virtual Data::Db::TDataSet* __fastcall GetDetailDataSet();

Properties

Type Visibility Source Unit Parent
function protected
IBX.IBCustomDataSet.pas
IBX.IBCustomDataSet.hpp
IBX.IBCustomDataSet TIBDataLink

Description

Returns the value of the DetailDataSet property.

IBX.IBCustomDataSet.TIBDataLink.GetDetailDataSet inherits from Data.DB.TDetailDataLink.GetDetailDataSet. All content below this line refers to Data.DB.TDetailDataLink.GetDetailDataSet.

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