Vcl.ComCtrls.TComboExItems.ComboItems

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ComboItems[const Index: Integer]: TComboExItem read GetComboItem;

C++

__property TComboExItem* ComboItems[const int Index] = {read=GetComboItem};

Properties

Type Visibility Source Unit Parent
property public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TComboExItems

Description

Lists the items in the collection.

Use ComboItems to access the items in this collection.

Index indicates the item to access, where 0 is the index of the first item, 1 is the index of the second item, and so on. The Count property indicates the maximum number of items.

Note: ComboItems is the same as the Items property, except that the type of the property is TComboExItem instead of TListControlItem, which is the base class for TComboExItem.

See Also