|
Compare(TCollectionItem,TCollectionItem)
|
Compares the two collection items and returns -1, 0, or 1. The Sort method uses the Compare method to determine the sort order of the items.
Warning
|
The OnCompare event handler must be defined
|
|
|
CustomSort(TCollectionItemCompareEvent)
|
Sorts the collection using a custom sorting function. Use this function to sort the collection using a different function than the OnCompare event.
|
|
IsSortable
|
Returns true if this collection can be sorted, i.e., does it have an OnCompare event.
|
|
Notify(TCollectionItem,Classes)
|
Represents method Notify(TCollectionItem,Classes).
|
|
QuickSort(Integer,Integer,TCollectionItemCompareEvent)
|
Sorts the collection using the Quicksort algorithm. The QuickSort method calls the Compare method to determine the sort order of the items.
|
|
Sort
|
Sorts the collection
|
|
SortItem(TCollectionItem)
|
Inserts the item into the collection at its place in the sort order.
|