#include "ltwrappr.h"
LAnnToolBar& LAnnotationWindow::GetToolBar()
Gets the internal annotation toolbar object used by all the annotation controls.
Returns
The internal annotation toolbar object used by all the annotation controls.
Comments
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. |
Required DLLs and Libraries
LTANN For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
Win32, x64.
See Also
Functions: |
|
Topics: |
|
|
|
|
Example
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; }