FMX.Platform.TApplicationEventData

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

  TApplicationEventData = record
    Event: TApplicationEvent;
    Context: TObject;
    constructor Create(const AEvent: TApplicationEvent; AContext: TObject);
  end;

C++

struct DECLSPEC_DRECORD TApplicationEventData
{
public:
    TApplicationEvent Event;
    System::TObject* Context;
    __fastcall TApplicationEventData(const TApplicationEvent AEvent, System::TObject* AContext);
    TApplicationEventData() {}
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
FMX.Platform.pas
FMX.Platform.hpp
FMX.Platform FMX.Platform


Beschreibung

Record, der ein Anwendungsereignis repräsentiert und den Typ des Ereignisses sowie einen Kontext mit zusätzlichen Informationen bereitstellt.

Siehe auch