LAnnotationWindow::GetContainerObject (original) (raw)

Summary

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

Syntax

#include "ltwrappr.h"

LAnnContainer& LAnnotationWindow::GetContainerObject()

Returns

The internal annotation container object used by the annotation control.

Comments

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

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

L_INT LAnnotationWindow_GetContainerObjectExample(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 */ /* do other processing……….*/ nRet = MyLAnnotationWindow.GetContainerObject().Save(MAKE_IMAGE_PATH(TEXT("MyAnn.ann")), ANNFMT_NATIVE,FALSE); if(nRet != SUCCESS) return nRet; } else { return FAILURE; /* there is an error */ } return SUCCESS; }

LEADTOOLS Raster Imaging C++ Class Library Help