Remove

Declaration:TAssocArray.Remove (Key: string): boolean;
The method Remove removes the entry specified by the key Key. The function returns true if an entry has been found and removed. If Key does not match any entry of the associative array, the function returns false.

Hint 1: The recognition of keys depends on the setting of the property IgnoreCase.

Hint 2: Please note that the internal order of the keys (properties Keys and Values) may change after a call to Remove.