TCollection.Items

Indexed array of items in the collection.

Declaration

Source position: classesh.inc line 568

public Property
  Items[Index: Integer]: TCollectionItem;

Description

Items provides indexed access to the items in the collection. Since the array is zero-based, Index should be an integer between 0 and Count-1.

It is possible to set or retrieve an element in the array. When setting an element of the array, the object that is assigned should be compatible with the class of the objects in the collection, as given by the TCollection.ItemClass property.

Adding an element to the array can be done with the TCollection.Add method. The array can be cleared with the TCollection.Clear method. Removing an element of the array should be done by freeing that element.

See also

Name Description
TCollection.Add Creates and adds a new item to the collection.
TCollection.Clear Removes all items from the collection.
TCollection.Count Number of items in the collection.
TCollectionItem Basic object that is managed by a TCollection class.
TCollection.ItemClass Class pointer for each item in the collection.