L_INT LImageListControl::ImportBitmapList(pImportList)
Inserts a list of bitmaps into the ImageList Control.
Pointer to the LILIMPORTBITMAPLIST structure that contains the list of bitmaps to be inserted.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 0 | An error occurred. Refer to Return Codes. |
You must set the uStructSize member of the LILIMPORTBITMAPLIST structure before using this function.
The list of bitmaps found in the passed LILIMPORTBITMAPLIST structure will be inserted into the Image List control starting from nStartIndex to (nStartIndex + nItemsToInsert 1).
After inserting the list of bitmaps successfully into the ImageList control, do not try to free the bitmaps of the passed list (hLists bitmaps). The ImageList control will have a reference to hList bitmaps-- not a copy of them.
Win32, x64.
L_INT LImageListControl__ImportBitmapListExample(HWND hWnd, LBitmapList& BitmapList, LImageListControl& ImgList)
{
L_INT nRet ;
if(IsWindow(hWnd) && BitmapList.GetHandle())
{
LILIMPORTBITMAPLIST ImportList;
// Getting the number of bitmaps in the list.
if(BitmapList.GetItemsCount() > 0) // There are some bitmaps
{
ZeroMemory(&ImportList, sizeof(LILIMPORTBITMAPLIST));
ImportList.uStructSize = sizeof(LILIMPORTBITMAPLIST);
ImportList.hList = BitmapList.GetHandle() ;
ImportList.nStartIndex = 0; // Start from Index 0.
ImportList.nItemsToInsert = BitmapList.GetItemsCount();// Import all the list bitmaps.
ImportList.pText = _T("Imported Bitmap-Text");
ImportList.pTextExt = _T("Imported Bitmap-TextExt");
nRet = ImgList.ImportBitmapList(&ImportList);
if(nRet != SUCCESS)
return nRet;
/* update the control */
RedrawWindow(hWnd, NULL, NULL, RDW_INVALIDATE | RDW_UPDATENOW | RDW_ERASE);
}
}
return SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document