ElementTree getListItem(ElementTree list, Int index)
Arguments
list: The list to searchindex: The index to retrieve (starting at zero)
Usage
Gets the list item within a list at the specified index. If the index given is not in the list, an Array::OutOfBounds Exception will be thrown. If the list given is not actually a list, a RequiresElement Exception is thrown.
list = addList(parent,Unordered,10);
for i in [0..9] {
item = getListItem(list,i);
addString(item,"This is item "+(i+1));
}