FireDAC.Comp.DataSet.TFDDataSet.AfterGetRecords

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

property AfterGetRecords: TFDDataSetEvent read FAfterGetRecords write FAfterGetRecords;

C++

__property TFDDataSetEvent AfterGetRecords = {read=FAfterGetRecords, write=FAfterGetRecords};

Description

Fires after fetching the next rowset.

The AfterGetRecords event fires after the dataset fetched the next rowset as a result of navigation methods calls. For example, fetching occurs automatically when invoking the Next, Last, and Locate methods.

See Also