Vcl.ComCtrls.TCustomComboBoxEx.ItemsEx

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ItemsEx: TComboExItems read FItemsEx write SetItemsEx stored IsItemsExStored;

C++

__property TComboExItems* ItemsEx = {read=FItemsEx, write=SetItemsEx, stored=IsItemsExStored};

Properties

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

Description

Lists the items that appear in the list portion of the combo box.

Read Items to access the list of items that appears in the combo box. ItemsEx is a collection of TComboExItem objects.

Set the value of Items to copy the items from another collection of TComboExItem objects.

Use the methods of Items to add, insert, delete and move items. Use the properties of individual items in the collection to specify the appearance of each item.

Note: To work with only the strings in the combo box, and not the other properties of the items, you can use the Items property instead.

See Also