FireDAC.Comp.DataSet.TFDMasterDataLink.DelayedScrollEnabled

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
FireDAC.Comp.DataSet.pas
FireDAC.Comp.DataSet.hpp
Unit: FireDAC.Comp.DataSet
Parent: TFDMasterDataLink

Delphi

property DelayedScrollEnabled: Boolean read GetDelayedScrollEnabled;

C++

__property bool DelayedScrollEnabled = {read=GetDelayedScrollEnabled, nodefault};

Description

Returns True if delayed scrolling is enabled.

Use the DelayedScrollEnabled property to detect when delayed scrolling is enabled for this dataset. 

The property returns True when there were no DisableDelayedScroll calls for this and for the other master datasets (if any). Otherwise, the property returns False. The property does not check TFDDataSet.FetchOptions.DetailDelay for zero value. 

Use ActualDelayedScrollEnabled to check whether a delayed scrolling happens or not.

See Also