L_ILM_SELECTALL

Send this message to set the select flag for all items.

Parameters

wParam

Ignored, use 0.

lParam

Ignored, use 0.

Returns

Value Meaning
SUCCESS Function was successful
< 0 An error occurred. Refer to Return Codes.

Comments

This message will set the select flag for all items in the ImageList control. If wParam is TRUE, all items will be selected, otherwise all item will be un-selected.

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_SELECTALLExample(HWND hCtrl) 
{ 
   if(IsWindow(hCtrl)) 
   { 
      /* deselect all items in the list */ 
      return (L_INT) SendMessage(hCtrl, L_ILM_SELECTALL, FALSE, 0L); 
   } 
   else 
      return ERROR_INVALID_PARAMETER; 
} 
Help Version 20.0.2020.4.3
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C API Help