method getValue

value getValue(int32 index);

Argumente

Zurückgegebener Wert

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

var aVal= arrayObj.getValue(2);