Vcl.Forms.TPopupWnd

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TPopupWnd = record
    ID: Integer;
    ControlWnd: HWND;
  end;

C++

struct DECLSPEC_DRECORD TPopupWnd
{
public:
    int ID;
    HWND ControlWnd;
};

Properties

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

Description

Record that describes a pop-up window.

TPopupWnd is a record that describes a pop-up window.

Field Meaning

ID

Represents the numerical identifier of the pop-up window.

ControlWnd

Specifies the pop-up window's control window.

See Also