System.Classes.TCollection.Items
Delphi
property Items[Index: Integer]: TCollectionItem read GetItem write SetItem;
C++
__property TCollectionItem* Items[int Index] = {read=GetItem, write=SetItem};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | System.Classes.pas System.Classes.hpp |
System.Classes | TCollection |
Description
Lists the items in the collection.
Use Items to access individual items in the collection. The value of the Index parameter corresponds to the Index property of TCollectionItem. It represents the position of the item in the collection.