cArray: 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 Count As Long, Optional ByVal Comparer As Variant )
The Comparer parameter can be an IComparer object 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 [Array Datatype], ByRef y As [Array Datatype]) As Long ' return a negative value if x is less than y. ' return a positive value if x is greater than y. ' return 0 if x equals y. End FunctionThe [Array Datatype] must be replaced with the datatype of the array. If the array is an array of Variants, then [Array Datatype] would be a Variant, not any specific sub-type within the variants of the array.
Project VBCorLib Overview Class cArray Overview cArray Properties cArray Methods SortKey TrueForAll