L_ILM_GETITEMCOUNT
Send this message to get the current number of items in the ImageList Control.
Parameter |
Description |
wParam |
Ignored, use 0. |
lParam |
Ignored, use 0. |
Returns
>=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:
L_ImgListGetItemCount(hWnd)
For a complete list of available macros, refer to the Ltlst.h file.
See Also
Elements: |
L_ILM_GETROWCOUNT, L_ILM_GETCOLCOUNT, L_ILM_GETSELCOUNT, L_ILM_GETPAGECOUNT |
Topics: |
|
|
Example
L_VOID TestFunc4(HWND hWnd)
{
LRESULT lCount;
L_TCHAR buf[180];
/* get current item count */
lCount = SendMessage(hWnd, L_ILM_GETITEMCOUNT, 0, 0L);
wsprintf(buf, TEXT("Items: %ld\n"), lCount);
MessageBox(hWnd, buf, TEXT("Count"), MB_OK);
}