Important: |
---|
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist. |
This macro uses an application-defined comparison function to sort the items of a list-view control. The index of each item changes to reflect the new sequence. You can use this macro or send the LVM_SORTITEMS message explicitly.
Syntax
BOOL ListView_SortItems( HWND hwnd, PFNLVCOMPARE pfnCompare, LPARAM lParamSort ); |
Parameters
- hwnd
-
Handle to the list-view control.
- pfnCompare
-
Pointer to the application-defined comparison function. The comparison function is called during the sort operation each time the relative order of two list items needs to be compared.
- lParamSort
-
Application-defined value that is passed to the comparison function.
Return Value
TRUE indicates success. FALSE indicates failure.
Remarks
The comparison function has the following form.
Copy Code | |
---|---|
int CALLBACK CompareFunc(LPARAM lParam1, LPARAM lParam2, LPARAM lParamSort); |
The lParam1parameter is the 32-bit value associated with the first item being compared; and the lParam2parameter is the value associated with the second item. These are the values that were specified in the lParammember of the items' LVITEMstructure when they were inserted into the list. The lParamSortparameter is the same value passed to the LVM_SORTITEMS message.
The comparison function must return a negative value if the first item should precede the second, a positive value if the first item should follow the second, or zero if the two items are equivalent.
Related message: LVM_SORTITEMS
Requirements
Header | commctrl.h |
Windows Embedded CE | Windows CE 1.0 and later |
Windows Mobile | Windows Mobile Version 5.0 and later |