CtlPanel.TOnAppletExceptionEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TOnAppletExceptionEvent = procedure (Sender: TObject; E: Exception) of object;

C++

typedef void __fastcall (__closure *TOnAppletExceptionEvent)(System::TObject* Sender, System::Sysutils::Exception* E);

Properties

Type Visibility Source Unit Parent
type
typedef
public
CTLPanel.pas
CtlPanel.hpp
CtlPanel CtlPanel

Description

TOnAppletExceptionEvent is the type for event handlers that respond when a control panel applet encounters an exception.

TOnAppletExceptionEvent lets you customize the response to exceptions that occur in a control panel application.

Sender is the object that raised the exception.

E is the exception object that describes the exception.

See Also