method removeValueAtIndex

void removeValueAtIndex(int32 index);

Argumente

Zurückgegebener Wert

This method removes the element at the given index.
var arrayObj = shell.serviceManager.basics.array;
arrayObj.addValue("a");
arrayObj.addValue("b");
arrayObj.addValue("c");
arrayObj.removeValueAtIndex(1);