TDataSetNotifyEvent type
|
Top
|
TDataSetNotifyEvent is a pointer to a method used to notify a dataset component an event has occurred.
Unit
DB
type TDataSetNotifyEvent = procedure(DataSet: TDataSet) of object;
Description
TDataSetNotifyEvent specifies a method that notifies a dataset component when an event has occurred. It is used by most events on the various dataset components. The DataSet parameter is the dataset component that is receiving the notification.
|
|