2019.2

Table Of Contents
"Find(const String Key)" on the facing
page
Integer Finds an item in the list and
returns its index.
"Key(Integer Index)" on the facing page String Returns the key at the specified
index.
"Sort()" on the facing page Sorts the list.
"SortByValue()" on page252 Sorts the list based on the value
instead of the key.
"Value(Integer Index )" on page252 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.
Page 250