Icon Sort Method

procedure Sort

Available In: Client and Server Applications

Use this method to sort the list of strings manually. Normally, the Sorted property would be used to keep the list sorted at all times, but sometimes the developer needs a finer level of control over when the list is sorted. The SortCaseInsensitive and SortLocaleInsensitive properties determine how the strings are compared during the sort:

PropertiesFunction Used
SortCaseInsensitive=False
SortLocaleInsensitive=True
CompareStr
SortCaseInsensitive=True
SortLocaleInsensitive=True
CompareText
SortCaseInsensitive=False
SortLocaleInsensitive=False
LocaleCompareStr
SortCaseInsensitive=True
SortLocaleInsensitive=False
LocaleCompareText
Image