Skip to content

TList.Add

Adds a new pointer to the list.

Declaration

Source position: classesh.inc line 325

public 
  function Add(Item: Pointer) : Integer;

Description

Add adds a new pointer to the list after the last pointer (i.e. at position Count, thus increasing the item count with 1. If the list is at full capacity, the capacity of the list is expanded, using the Grow]() method.

To insert a pointer at a certain position in the list, use the Insert method instead.

See also

Name Description
Delete Removes a pointer from the list.
Grow
Insert Inserts a new pointer in the list at a given position.