L_ILM_GETITEMCOUNT

Send this message to get the current number of items in the ImageList Control.

Parameters

wParam

Ignored, use 0.

lParam

Ignored, use 0.

Returns

Value Meaning
>=0 The number of items
<0 An error occurred. Refer to Return Codes.

Comments

This message will return the total number of items in the ImageList Control.

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_GETITEMCOUNTExample(HWND hCtrl) 
{ 
   if(IsWindow(hCtrl)) 
   { 
      LRESULT lCount; 
      L_TCHAR buf[180]; 
 
      /* get current item count */ 
      lCount = SendMessage(hCtrl, L_ILM_GETITEMCOUNT, 0, 0L); 
 
      wsprintf(buf, TEXT("Items: %ld\n"), lCount); 
      MessageBox(hCtrl, buf, TEXT("Count"), MB_OK); 
 
      return SUCCESS; 
   } 
   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