L_ILM_SORT
Send this message to sort the items in the ImageList Control based on their text attribute.
Parameter |
Description |
wParam |
Boolean flag, TRUE to sort ascending, FALSE to sort descending. |
lParam |
Ignored, use 0. |
Returns
SUCCESS |
Function was successful |
< 0 |
An error occurred. Refer to Return Codes. |
Comments
If wParam is TRUE, items will be sorted in ascending order, otherwise, items will be sorted in descending order.
The associated macro is:
L_ImgListSort(hWnd, bAscending)
For a complete list of available macros, refer to the Ltlst.h file.
See Also
Elements: |
|
Topics: |
|
|
Example
L_VOID TestFunc12(HWND hWnd)
{
if(IsWindow(hWnd))
{
/* sort items ascending */
SendMessage(hWnd, L_ILM_SORT, (WPARAM)TRUE, 0L);
/* update the control */
RedrawWindow(hWnd, NULL, NULL, RDW_INVALIDATE | RDW_UPDATENOW |
RDW_ERASE);
}
}