L_ILM_REMOVE

Send this message to remove an item from the ImageList Control.

Parameters

wParam

Index of item to remove.

lParam

Ignored, use 0.

Returns

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

Comments

This message will remove the specified item from the list.

Note: on an insert, the image and text (if any) are copied to internal storage. The ImageList Control will free its copy of the image and/or text when the item is deleted. You are responsible for freeing the original data when it is no longer needed by your application.

The associated macro is:

L_ImgListRemove(hWnd, uIndex)

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

See Also

Elements

Topics

Example

L_INT ILM_REMOVEExample(HWND hCtrl) 
{ 
   if(IsWindow(hCtrl)) 
   { 
      /* remove the first item from the list */ 
      L_INT nRet = (L_INT)SendMessage(hCtrl, L_ILM_REMOVE, 0, 0L); 
 
      /* update the control */ 
      RedrawWindow(hCtrl, NULL, NULL, RDW_INVALIDATE | RDW_UPDATENOW | RDW_ERASE); 
 
      return nRet; 
   } 
   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