2021.1

Table Of Contents
Return value: 0-based index (integer) of the string. If the string is not found, the method returns
-1.
Key(Integer Index)
Returns the key at the specified index.
Index
0-based index (integer) of the string to retrieve.
Return value: String. Value of the key at the specified index.
Exceptions
l EOleException Index is lower than 0 or higher than Count-1.
Sort()
Sorts the items in the list according to their key. The sort performed is a simple alphabetical
string sort: 30 comes after 200. The strings are expected to be formatted correctly to return the
desired order (ex: "030", "200" will be sorted with 30 first and then 200).
SortByValue()
Sorts the items in the list according to their value instead of the key.
Value(Integer Index )
Retrieves the value of the optional integer at the specified index.
Index
0-based index (integer) of the value to retrieve.
Return value: The integer value at the specified index.
Exceptions
l EOleException: Index is lower than 0 or higher than Count-1.
Page 242