Vcl.DBCtrls.TFieldDataLink.OnUpdateData

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnUpdateData: TNotifyEvent read FOnUpdateData write FOnUpdateData;

C++

__property System::Classes::TNotifyEvent OnUpdateData = {read=FOnUpdateData, write=FOnUpdateData};

Properties

Type Visibility Source Unit Parent
event public
Vcl.DBCtrls.pas
Vcl.DBCtrls.hpp
Vcl.DBCtrls TFieldDataLink

Description

Occurs when it is time to post any pending changes to the dataset.

Write an OnUpdateData event handler to write the data in the representation of the field to the database record. Posting the data from within OnUpdateData does not trigger a call to OnDataChange.

See Also