Data.DB.TDataChangeEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TDataChangeEvent = procedure(Sender: TObject; Field: TField) of object;

C++

typedef void __fastcall (__closure *TDataChangeEvent)(System::TObject* Sender, TField* Field);

Properties

Type Visibility Source Unit Parent
type
typedef
public
Data.DB.pas
Data.DB.hpp
Data.DB Data.DB

Description

OnDataChange event handler type.

TDataChangeEvent is a type used by the OnDataChange event handler. The Sender parameter specifies the sender object. The Field parameter specifies the field that was affected, if only one field was targeted. Field is set to null if the change can affect more than one field value (for instance, when moving to a new record or refreshing a record buffer).

See Also