LBitmapList::LBitmapList()
LBitmapList::LBitmapList(pBitmapList)
Constructs and initializes the member variables of an LBitmapList object.
Pointer to a bitmap list object to be used for initializing the object.
None.
LBitmapList::LBitmapList() is the default constructor for the LBitmapList class.
LBitmapList::LBitmapList(pBitmapList) constructor will initialize the class object's bitmap list from the passed object's bitmap list, and then invalidate the passed object.
Win32, x64.
This is an example for LBitmapList::LBitmapList():
L_INT LBitmapList__LBitmapListFirstExample()
{
L_INT nRet;
LBitmapList bmpList;
// call create to have a valid LBitmapList object
nRet = bmpList.Create();
return nRet;
}
//This is an example for LBitmapList::LBitmapList(pBitmapList):
L_INT LBitmapList__LBitmapListSecondExample(HWND hWnd)
{
UNREFERENCED_PARAMETER(hWnd);
LBitmapList FirstList;
// call create to make the list valid
FirstList.Create();
//... load FirstList with data
LBitmapList SecondList(&FirstList);
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