Vcl.Forms.TPopupForm

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

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

Properties

Type Visibility Source Unit Parent
record
struct
public
Vcl.Forms.pas
Vcl.Forms.hpp
Vcl.Forms Vcl.Forms

Description

Stores information for a pop-up.

TPopupForm contains information about a custom form that is registered as a pop-up in another form. TPopupWnd is a record that describes a pop-up window.


Field Meaning

FormId

Represents the form ID.

Form

Represents the TCustomForm.

WasPopup

Denotes if the pop-up was already displayed.


See Also