method setValue

void setValue(int32 index,value aValue);

Argumente

Zurückgegebener Wert

This method replaces the value at the given index with the given value.
var arrayObj = shell.serviceManager.basics.array;
arrayObj.addValue("a");
arrayObj.addValue("b");
arrayObj.addValue("c");
arrayObj.setValue(1, "d");