CtlPanel.TOnAppletExceptionEvent

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
type
typedef
Visibility: public
Source:
CTLPanel.pas
CtlPanel.hpp
Unit: CtlPanel
Parent: CtlPanel

Delphi

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

C++

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

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