IBX.IBEvents.TErrorEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TErrorEvent=procedure( Sender: TObject; ErrorCode:integer)of object;

C++

typedef void __fastcall (__closure *TErrorEvent)(System::TObject* Sender, int ErrorCode);

Properties

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

Description

TErrorEvent is the type of event handlers that respond to exceptions that occur when monitoring InterBase events.

Sender is the TIBEvents component that encounters the exception.

If the exception is an EIBError object, ErrorCode is the InterBase error code it represents. Otherwise, ErrorCode is 0.

See Also