2020.1

Table Of Contents
"Sort()" on the next page Sorts the list.
"SortByValue()" on the next page Sorts the list based on the value
instead of the key.
"Value(Integer Index )" on the next page Integer Returns the value at the specified
index.
Add(const String Key, Integer Value)
Adds a new string key in the list, with an optional associated integer Value.
Key
String on which the sort will be performed.
Value (optional)
Integer associated with the string. This value is not used and will not be changed by the sort
class. If the string goes to another position in the list after the sort, this value will move as well
to the new index of the string.
Return value: 0-based index (integer) of the newly added string. It is therefore always equal to
Count-1.
Count()
Returns the number of strings in the list.
Return value: Integer. Number of strings in the list. If the list does not contain any string, the
return value is 0.
Delete(Integer Index)
Removes a single string from the list.
Index
0-based index of the string to remove.
Page 239