LAnnotationWindow::GetToolBar

#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
LTDIS
LTDLG
LTEFX
LTFIL
LTIMG
LTSCR
LTTWN

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

Platforms

Win32, x64.

See Also

Functions:

Class Members

Topics:

Annotation Functions: Implementing Automation

 

Implementing Annotations

 

Automated User Interface for Annotations

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; 
} 

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS Raster Imaging C++ Class Library Help