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. |
SUCCESS |
Function was successful |
< 0 |
An error occurred. Refer to Return Codes. |
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.
Elements: |
|
Topics: |
|
|
L_INT ILM_SORTExample(HWND hCtrl)
{
if(IsWindow(hCtrl))
{
/* sort items ascending */
L_INT nRet = (L_INT)SendMessage(hCtrl, L_ILM_SORT, (WPARAM)TRUE, 0L);
/* update the control */
RedrawWindow(hCtrl, NULL, NULL, RDW_INVALIDATE | RDW_UPDATENOW | RDW_ERASE);
return nRet;
}
else
return ERROR_INVALID_PARAMETER;
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET