CtlPanel.TOnAppletExceptionEvent
Delphi
TOnAppletExceptionEvent = procedure (Sender: TObject; E: Exception) of object;
C++
typedef void __fastcall (__closure *TOnAppletExceptionEvent)(System::TObject* Sender, System::Sysutils::Exception* E);
Eigenschaften
Typ | Sichtbarkeit | Quelle | Unit | Übergeordnet |
---|---|---|---|---|
type typedef |
public | CTLPanel.pas CtlPanel.hpp |
CtlPanel | CtlPanel |
Beschreibung
TOnAppletExceptionEvent wird für Ereignisbehandlungsroutinen verwendet, die aufgerufen werden, wenn eine Exception in einer Systemsteuerungsanwendung auftritt.
Mit TOnAppletExceptionEvent können Sie die Reaktion auf Exceptions in einer Systemsteuerungsanwendung anpassen.
Sender ist das Objekt, das die Exception ausgelöst hat.
E ist das Exception-Objekt, das die Exception beschreibt.