CorArray: SortKeyEx |
Sorts an array based on an array of keys. A subportion of the array can be sorted given a startindex and length. An optionally, supplied comparer object can be used to compare special elements, such as userdefined values.
Public Sub SortKeyEx( ByRef Keys As Variant, ByRef Items As Variant, ByVal Index As Long, ByVal Length As Long, Optional ByRef Comparer As Variant )
The Comparer parameter can be an IComparer interface or a callback address to a compare function using the AddressOf method. The callback method signature is defined as follows:
Public Function SortCallback(ByRef x As <Type>, ByRef y As <Type>) As Long ' return less than zero if x is less than y. ' return greater than zero if x is greater than y. ' return zero if x equals y. End FunctionThe <Type> the type of element of the array. If the array is an array of Variants, then <Type> would be a Variant, not any specific sub-type within the variant elements of the array.