FMX.ListBox.TCustomComboBox.ListItems
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
- To add items as TListBoxItem at design-time, see ListBox Items Editor.
- To add items as TStrings at design-time, see String List editor.