FMX.ListBox.TListBox.Items

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Items: TStrings read FItems write SetItems stored ItemsStored;

C++

__property Items;

Properties

Type Visibility Source Unit Parent
property published
FMX.ListBox.pas
FMX.ListBox.hpp
FMX.ListBox TListBox

Description

Specifies the items in the list box.

FMX.ListBox.TListBox.Items inherits from FMX.ListBox.TCustomListBox.Items. All content below this line refers to FMX.ListBox.TCustomListBox.Items.

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