Constructs and initializes the different member variables of the LVectorWindow object.
#include "ltwrappr.h"
LVectorWindow::LVectorWindow(L_VOID)
LVectorWindow::LVectorWindow(hWndParent, nID, dwStyle, x, y, nCx, nCy)
Handle of the parent window.
The controls ID.
Specifies the control's style. Apply any combination of Window styles and LEAD window styles. For more information on Windows styles, refer to your compilers help file. For more information on LEAD window styles, refer to Window styles
The starting x position.
The starting y position.
The width of the vector window.
The height of the vector window.
None
LVectorWindow::LVectorWindow () is a constructor for the LVectorWindow object.
LVectorWindow::LVectorWindow (hWndParent, nID, dwStyle, x, y, nCX, nCY) creates the vector window control using the specified options. This will fill in the m_hWnd data member with the handle to the new window.
// This is an example for LVectorWindow::LVectorWindow():
L_INT LVectorWindow__LVectorWindowExample_1()
{
LVectorWindow myVectorWindow;
//destructor called when out of scope
return SUCCESS;
}
// This is an example for LVectorWindow:: LVectorWindow (hWndParent, nID, dwStyle, x, y, nCX, nCY)
L_INT LVectorWindow__LVectorWindowExample_2(HWND hWndParent)
{
LVectorWindow myVectorWindow(hWndParent,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