[Overview][Constants][Types][Classes][Procedures and functions][Variables] |
Inserts a new pointer in the list at a given position.
Source position: classesh.inc line 211
public procedure TList.Insert( |
Index: Integer; |
Item: Pointer |
); |
Index |
|
Position where to insert |
Item |
|
Pointer to be inserted. |
Insertinserts pointer Itemat position Indexin the list. All pointers starting from Indexare shifted to the right.
If Indexis not a valid position, then a EListErrorexception is raised.
|
Adds a new pointer to the list. |
|
|
Removes a pointer from the list. |