Vcl.ExtCtrls.TCustomGridPanel.ControlCollection

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ControlCollection: TControlCollection read FControlCollection write SetControlCollection;

C++

__property TControlCollection* ControlCollection = {read=FControlCollection, write=SetControlCollection};

Properties

Type Visibility Source Unit Parent
property public
Vcl.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls TCustomGridPanel

Description

Specifies the controls currently placed on the grid panel.

Use ControlCollection to add, remove, or access control items in the collection of controls of a TCustomGridPanel component. Each control item is identified through its Row and Column properties.

To add a control to the collection, use the AddControl method.

To remove a control from the collection, use the RemoveControl method.

To access a control from the collection, use the ControlItems property.

See Also