FMX.ListBox.TCustomListBox.Items

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Items: TStrings read FItems write SetItems stored ItemsStored;

C++

__property System::Classes::TStrings* Items = {read=FItems, write=SetItems, stored=ItemsStored};

Properties

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

Description

Specifies the items in the list box.

Use Items to get or set the list of items in the list box as strings.

Use the ListItems property to access an item by specifying its index. This property returns the item as a TListBoxItem object.

Adding Items

See Also