Data.DB.TDataSet.AfterRefresh

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property AfterRefresh: TDataSetNotifyEvent read FAfterRefresh write FAfterRefresh;

C++

__property TDataSetNotifyEvent AfterRefresh = {read=FAfterRefresh, write=FAfterRefresh};

Properties

Type Visibility Source Unit Parent
event public
Data.DB.pas
Data.DB.hpp
Data.DB TDataSet

Description

Occurs after an application refreshes the data in the dataset.

Write an AfterRefresh event handler to take specific action immediately after an application has updated the records in the dataset. AfterRefresh is generated by calls to the Refresh method.

AfterRefresh is an event handler of type Data.DB.TDataSetNotifyEvent.

See Also