L_ILM_CLEAR

Send this message to clear all items from the ImageList Control.

Parameter

Description

wParam

Ignored, use 0.

lParam

Ignored, use 0.

Returns

SUCCESS

Function was successful

< 0

An error occurred. Refer to Return Codes.

Comments

The associated macro is:

L_ImgListClear(hWnd)

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

See Also

Elements:

L_ILM_GETITEMCOUNT, L_ILM_REMOVE, L_ILM_SORT

Topics:

Using the ImageList Control

 

Image List Control Messages

 

Example

L_INT ILM_CLEARExample(HWND hCtrl)
{
   if(IsWindow(hCtrl))
   {
      /* clear all items */
      return (L_INT)SendMessage(hCtrl, L_ILM_CLEAR, 0, 0L);
   }
   else
      return ERROR_INVALID_PARAMETER;
}