[Overview][Constants][Types][Classes][Procedures and functions][Index] |
Add an object to the list.
Source position: contnrs.pp line 47
public function TFPObjectList.Add( |
AObject: TObject |
):Integer; |
AObject |
|
The object to add |
The index of the object in the list.
Add adds AObject to the list and returns the index of the object in the list.
Note that when OwnsObjects is True, an object should not be added twice to the list: this will result in memory corruption when the object is freed (as it will be freed twice). The Add method does not check this, however.
None.
|
Should the list free elements when they are removed. |
|
|
Delete an element from the list. |