Data.DB.TMasterDataLink.RecordChanged

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure RecordChanged(Field: TField); override;

C++

virtual void __fastcall RecordChanged(TField* Field);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Data.DB.pas
Data.DB.hpp
Data.DB TMasterDataLink

Description

Generates an OnMasterChange event when the contents of one of the fields in the current record changes.

Applications can not call the protected RecordChanged method. It is called automatically when the contents of the current record change. The Field parameter indicates which field in the current record has changed. If Field is nil (Delphi) or NULL (C++), the entire record has changed.

If the Field parameter is nil (Delphi) or NULL (C++), or if the Field parameter is one of the fields listed in the Fields property, RecordChanged triggers an OnMasterChange event.

See Also