FMX.ListBox.TCustomListBox.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 TCustomListBox

Description

Returns the list item with the specified Index.

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

See Also