Data.DB.TDataSetNotifyEvent

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
type
typedef
Visibility: public
Source:
Data.DB.pas
Data.DB.hpp
Unit: Data.DB
Parent: Data.DB

Delphi

TDataSetNotifyEvent = procedure(DataSet: TDataSet) of object;

C++

typedef void __fastcall (__closure *TDataSetNotifyEvent)(TDataSet* DataSet);

Description

TDataSetNotifyEvent notifies the TDataSet that an event has occurred.

The TDataSetNotifyEvent method notifies the TDataSet that an event has occurred. TDataSetNotifyEvent is used by most events that occur on various dataset components.

The DataSet parameter specifies the dataset that receives the notification.

See Also