Vcl.ComCtrls.TListItems.Item

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Item[Index: Integer]: TListItem read GetItem write SetItem; default;

C++

__property TListItem* Item[int Index] = {read=GetItem, write=SetItem/*, default*/};

Properties

Type Visibility Source Unit Parent
property public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TListItems

Description

Lists all list items managed by the TListItems object.

Use Item to directly access a list item, given its position in the list view. The first item has an index of 0, the second an index of 1, and so on.

See Also

Code Examples