method removeValue

void removeValue(value aValue);

Argumente

Zurückgegebener Wert

This method removes all elements matching the specified value.
var arrayObj = shell.serviceManager.basics.array;
arrayObj.addValue("a");
arrayObj.addValue("b");
arrayObj.addValue("a");
arrayObj.removeValue("a");