Vcl.DBCtrls.TDataSourceLink.RecordChanged

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure RecordChanged(Field: TField); override;

C++

virtual void __fastcall RecordChanged(Data::Db::TField* Field);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.DBCtrls.pas
Vcl.DBCtrls.hpp
Vcl.DBCtrls TDataSourceLink

Description

Informs the TDBLookupControl of changes in the current record or field of the DataSource.

Applications cannot call RecordChanged directly. It is triggered automatically after changes in the contents of the current record. If the Field parameter is the key field of the lookup control, or if the Field parameter is nil (Delphi) or NULL (C++), indicating that the entire record changed, RecordChanged causes the lookup control to refetch the value of its key field.

See Also