2019.2

Table Of Contents
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.
Exceptions
l EOleException Index is lower than 0 or higher than Count-1.
Find(const String Key)
Finds a string and returns its position in the list.
Key
String to find.
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.
Page 249