method removeAllValues

void removeAllValues();

Argumente

Zurückgegebener Wert

This method removes all the values in the array.
var arrayObj = shell.serviceManager.basics.array;
arrayObj.addValue("a");
arrayObj.addValue("b");
arrayObj.addValue("c");
arrayObj.removeAllValues();