procedure Insert(Index: Integer; const Key, Value: string);
Description
Call Insert to add a key-value pair at a specified position in the list, shifting the item that previously occupied that position (and all subsequent items) up. Insert increments Count and, if necessary, allocates memory.
The Index parameter is zero-based, so the first position in the list has an index of 0.
See also