Send this message to remove an item from the ImageList Control.
Parameter |
Description |
wParam |
Index of item to remove. |
lParam |
Ignored, use 0. |
SUCCESS |
Function was successful |
< 0 |
An error occurred. Refer to Return Codes. |
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.
Elements: |
|
Topics: |
|
|
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;
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET