C++ Class Library

The LEADTOOLS C++ Class Library is a wrapper to the LEADTOOLS C API and provides only a subset of the features and functionality otherwise available in the LEADTOOLS C API. For more information about the full feature set of the LEADTOOLS C API, refer to LEADTOOLS C API Introduction.

Is this page helpful?

In this page

LAnnotationWindow::GetAutomationObject

Summary

Gets the internal annotation automation object used by the annotation control.

Syntax

#include "ltwrappr.h"

LAnnAutomation& LAnnotationWindow::GetAutomationObject()

Returns

The internal annotation automation object used by the annotation control.

Comments

This object can be used in functions defined in the LAnnAutomation class.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

Copied to clipboard
L_INT LAnnotationWindow_GetAutomationObjectExample(HWND hParentWnd) 
{ 
	L_INT nRet; 
    /*initialize hParentWnd  with the handle of the parent window*/ 
    LAnnotationWindow MyLAnnotationWindow; 
    HWND hWnd=MyLAnnotationWindow.CreateWnd(hParentWnd); 
 
    if(hWnd!=NULL) 
    { 
       /*the function was successful */ 
       nRet = MyLAnnotationWindow.GetAutomationObject().SetTool(ANNTOOL_RULER); 
		 if(nRet != SUCCESS) 
			 return nRet; 
    } 
    else 
    { 
       /* there is an error */ 
		 return FAILURE;  
    } 
	return SUCCESS; 
} 
Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 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.