Vcl.DBClientActns.TReconcileActionLink.DataEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DataEvent(Event: TDataEvent; Info: NativeInt); override;

C++

virtual void __fastcall DataEvent(Data::Db::TDataEvent Event, NativeInt Info);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.DBClientActns.pas
Vcl.DBClientActns.hpp
Vcl.DBClientActns TReconcileActionLink

Description

Responds to various events that occur while working with data.

DataEvent is called automatically when various data events occur. Event indicates the event that just occurred. Info provides additional context information for some events.

In TReconcileActionLink, DataEvent first calls the method inherited from TDataLink to dispatch most events by calling appropriate methods. Then, if the data event is deReconcileError, it notifies the action specified by the ApplyAction property so that it can display an error dialog.

See Also