method removeValueForKey

void removeValueForKey(string aKey);

Argumente

Zurückgegebener Wert

This method removes an entry from the dictionary with the specified key.
var dictObj = shell.serviceManager.basics.dictionary;
dictObj.setValueForKey("John", "FirstName");
dictObj.setValueForKey("Doe", "LastName");
dictObj.setValueForKey("35", "Age");
dictObj.removeValueForKey("Age");