LImageListControl::LImageListControl()
LImageListControl::LImageListControl(hWndParent, nID, dwStyle=WS_CHILD|WS_VISIBLE|WS_BORDER, x=0, y=0, nCx=200, nCy=200, cbBackground=RGB(128,128,128))
Constructs and initializes the member variables of an LImageListControl object.
Handle of the parent window.
The controls ID.
Specifies the control's style, for example WS_VISIBLE, WS_BORDER, or WS_CHILD. For more information on Windows styles, refer to your compilers help file.
The starting x position.
The starting y position.
The width of the bitmap window.
The height of the bitmap window.
The background color of the control.
None.
LImageListControl::LImageListControl() is the default constructor for the LImageListControl class.
LImageListControl::LImageListControl(hWndParent, nID, dwStyle, x, y, nCX, nCY, cbBackground) creates the image list control using the specified options. This will fill in the m_hWnd data member with the handle to the new control window.
Win32, x64.
// This is an example for LImageListControl::LImageListControl():
L_INT LImageListControl__LImageListControlExample_1()
{
// this will call the default constructor and destructor when it is out of scope
LImageListControl MyLImageListControl;
//...
return SUCCESS;
}
// This is an example for LImageListControl::LImageListControl(hWndParent, nID, dwStyle, x, y, nCX, nCY, cbBackground):
L_INT LImageListControl__LImageListControlExample_2(HWND hParentWnd)
{
// this will call the constructor and will initialize the image list control with the specified parameters.
/*initialize hParentWnd with the handle of the parent window*/
LImageListControl MyLImageListControl(hParentWnd,15,WS_VISIBLE,0,0,100,100);
//...
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