LAnnToolBar& LAnnotationWindow::GetToolBar()
Gets the internal annotation toolbar object used by all the annotation controls.
The internal annotation toolbar object used by all the annotation controls.
Call this function to get the internal annotation toolbar object used by all the annotation controls.
This object can be used in functions defined in the LAnnToolBar class.
Note: The internal annotation toolbar object is defined as a static member so all instances of the annotation control object that you create will use the same toolbar object. This object will exist as long as there are still valid annotation control objects in your application. When the last annotation control object is destroyed the internal toolbar object will be destroyed.
Win32, x64.
L_INT LAnnotationWindow_GetToolBarExample(HWND hParentWnd)
{
LAnnotationWindow MyLAnnotationWindow;
HWND hWnd=MyLAnnotationWindow.CreateWnd(hParentWnd);
if(hWnd!=NULL)
{
POINT Point={10,10};
/*the function was successful */
if(MyLAnnotationWindow.GetToolBar().IsCreated()==FALSE)
MyLAnnotationWindow.GetToolBar().Create(hParentWnd,&Point,0,TRUE);
}
else
{
/* there is an error */
return FAILURE;
}
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