Vcl.Forms.TPopupForm

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

  TPopupForm = record
    FormID: Integer;
    Form: TCustomForm;
    WasPopup: Boolean;
  end;

C++

struct DECLSPEC_DRECORD TPopupForm
{
public:
    int FormID;
    TCustomForm* Form;
    bool WasPopup;
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
Vcl.Forms.pas
Vcl.Forms.hpp
Vcl.Forms Vcl.Forms


Beschreibung

Speichert Informationen für ein Popup.

TPopupForm enthält Informationen über ein benutzerdefiniertes Formular, das als Popup in einem anderen Formular registriert ist. TPopupWnd ist ein Record, der ein Popup-Fenster beschreibt.


Feld Bedeutung

FormId

Repräsentiert die ID des Formulars.

Form

Repräsentiert das TCustomForm.

WasPopup

Gibt an, ob das Formular schon angezeigt wurde.


Siehe auch