Data.DB.TMasterDataLink.RecordChanged

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: protected
Source:
Data.DB.pas
Data.DB.hpp
Unit: Data.DB
Parent: TMasterDataLink

Delphi

procedure RecordChanged(Field: TField); override;

C++

virtual void __fastcall RecordChanged(TField* Field);

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