DICTREMOVE |
Top Previous Next |
Syntax INT = DictRemove(dict as POINTER,key as STRING) Description Looks up the array entry corresponding to the supplied key; then, if the key is found, removes the entry.. Parameters dict - Pointer to an associative array created with the DICTCREATE command. key - Key for the element to be removed Return value TRUE if entry was found and removed, FALSE otherwise. Remarks None Example usage DICTREMOVE myDict, "Jerry" |