FMX.Forms.TExceptionEvent

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

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

C++

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

Propriétés

Type Visibilité  Source Unité  Parent
type
typedef
public
FMX.Forms.pas
FMX.Forms.hpp
FMX.Forms FMX.Forms

Description

TExceptionEvent est le type des gestionnaires d'événements qui répondent quand l'application intercepte une exception non gérée.

TExceptionEvent est le type du gestionnaire d'événements OnException.

Sender est l'objet qui reçoit la notification d'événement. Typiquement, il s'agit de l'objet application. E est l'objet exception qui représente l'exception.

Voir aussi