IBX.IBEvents.TEventAlert

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TEventAlert = procedure( Sender: TObject; EventName: string; EventCount: longint;
var CancelAlerts: Boolean) of object;

C++

typedef void __fastcall (__closure *TEventAlert)(System::TObject* Sender, System::UnicodeString EventName, int EventCount, bool &CancelAlerts);

Properties

Type Visibility Source Unit Parent
type
typedef
public
IBX.IBEvents.pas
IBX.IBEvents.hpp
IBX.IBEvents IBX.IBEvents

Description

TEventAlert is the type of event handlers that respond to InterBase events.

Sender is the TIBEvents object that is monitoring InterBase events.

EventName is the name of the most recently received event.

EventCount is the number of EventName events received since the last time the event handler was called.

CancelAlerts returns true if the TIBEvents object should stop monitoring events, false if the event monitoring should continue.