Vcl.Controls.TControlListItem
Delphi
TControlListItem = record
Control: TControl;
Parent: TWinControl;
end;
C++
struct DECLSPEC_DRECORD TControlListItem
{
public:
TControl* Control;
TWinControl* Parent;
};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
record struct |
public | Vcl.Controls.pas Vcl.Controls.hpp |
Vcl.Controls | Vcl.Controls |
Description
TControlListItem represents an item used in a control list.
The following table lists the fields of TControlListItem:
Field | Meaning |
---|---|
Control |
A control in a control list. |
Parent |
The parent of the control. |