Datasnap.DBClient.TCustomClientDataSet.CloneSource

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
Datasnap.DBClient.pas
Datasnap.DBClient.hpp
Unit: Datasnap.DBClient
Parent: TCustomClientDataSet

Delphi

property CloneSource: TCustomClientDataSet read FCloneSource;

C++

__property TCustomClientDataSet* CloneSource = {read=FCloneSource};

Description

Indicates the client dataset (if any) with which this client dataset shares data.

Read CloneSource to access another client dataset that shares its data cursor with this one. CloneSource is set by the CloneCursor method when the datasets are linked.

If the client dataset has not called CloneCursor to share the data cursor of another client dataset, CloneSource is nil (Delphi) or NULL (C++).

See Also