L_ILM_SORT

Send this message to sort the items in the ImageList Control based on their text attribute.

Parameters

wParam

Boolean flag, TRUE to sort ascending, FALSE to sort descending.

lParam

Ignored, use 0.

Returns

Value Meaning
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:

For a complete list of available macros, refer to the Ltlst.h file.

See Also

Elements

Topics

Example

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; 
} 
Help Version 21.0.2023.2.15
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C API Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.