method removeAllValues

void removeAllValues();

Argumente

Zurückgegebener Wert

This method removes all entries from the dictionary.
var dictObj = shell.serviceManager.basics.dictionary;
dictObj.setValueForKey("John", "FirstName");
dictObj.setValueForKey("Doe", "LastName");
dictObj.setValueForKey("35", "Age");
dictObj.removeAllValues();