procedure Delete(Index: Integer);
Description
Call Delete to remove the key-value pair at the position given by the Index parameter from the list. The index is zero-based, so the first item has an index value of 0, the second item has an index value of 1, and so on. Calling Delete moves up all items in the Keys and Values arrays that follow the deleted item, and reduces the Count.
See also