FMX.ListBox.TCustomComboBox.ListItems

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ListItems[Index: Integer]: TListBoxItem read GetListItem;

C++

__property TListBoxItem* ListItems[int Index] = {read=GetListItem};

Properties

Type Visibility Source Unit Parent
property public
FMX.ListBox.pas
FMX.ListBox.hpp
FMX.ListBox TCustomComboBox

Description

Returns the list item with the specified Index.

Use ListItems to get the item from the drop-down list with the specified Index. The item returned is a TListBoxItem object. If you want to obtain the item as a string, use Items.

Adding Items

See Also