LAnnotationWindow::GetToolBar

Summary

Gets the internal annotation toolbar object used by all the annotation controls.

Syntax

#include "ltwrappr.h"

LAnnToolBar& LAnnotationWindow::GetToolBar()

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

Platforms

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; 
} 
Help Version 22.0.2023.2.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.