Vcl.DBGrids.TGridDataLink.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.DbGrids.pas
Vcl.DBGrids.hpp
Vcl.DBGrids TGridDataLink

Description

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

Applications cannot call RecordChanged directly. 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.

RecordChanged informs TCustomDBGrid of these changes so that it can update the display of the affected column or columns.

See Also