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_VOID TestFunc20(HWND hWnd)
{
   if(IsWindow(hWnd))
   {
      /* clear all items */
      SendMessage(hWnd, L_ILM_CLEAR, 0, 0L);
   }
}