LAnnotationWindow::LAnnotationWindow()
LAnnotationWindow::LAnnotationWindow(hWndParent, nID=0, dwStyle=WS_VISIBLE|L_BS_CENTER|L_BS_PROCESSKEYBOARD, x=0, y=0, nCx=200, nCy=200)
Constructs and initializes the member variables of the LAnnotationWindow object.
Handle to the parent window.
The control's id.
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. For more information on LEAD window styles, refer to Bitmap Window LEAD specific styles.
X coordinate of the origin of the annotation window.
Y coordinate of the origin of the annotation window.
The width of the annotation window.
The height of the annotation window.
None.
LAnnotationWindow::LAnnotationWindow() is the default constructor for this class.
LAnnotationWindow::LAnnotationWindow(hWndParent, nID, dwStyle, x, y, nCx, nCy) creates the window for the class object using the specified parameters and initializes the annotation automation engine.
Win32, x64.
This is an example for LAnnotationWindow::LAnnotationWindow():
L_INT LAnnotationWindow_LAnnotationWindowFirstExample()
{
// this will call the default constructor and destructor when it is out of scope
LAnnotationWindow LeadBitmapAnnWindow;
//…
return SUCCESS;
}
//This is an example for LAnnotationWindow::LAnnotationWindow(hWndParent, nID, dwStyle, x, y, nCx, nCy)
L_INT LAnnotationWindow_LAnnotationWindowSecondExample(HWND hParentWnd)
{
// this will call the constructor and will initialize the bitmap window with the specified parameters.
LAnnotationWindow MyLAnnotationWindow(hParentWnd, 15);
//…
//…
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