LAnnotationWindow::GetAutomationObject

#include "ltwrappr.h"

LAnnAutomation& LAnnotationWindow::GetAutomationObject(L_VOID)

Gets the internal annotation automation object used by the annotation control. This function is available in the Document/Medical Toolkits.

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

LTANN
LTDIS
LTDLG
LTEFX
LTFIL
LTIMG
LTISI
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.

See Also

Functions:

Class Members

Topics:

Annotation Functions: Implementing Automation

 

Implementing Annotations

 

Automated User Interface for Annotations

 

Displaying and Manipulating Annotation Objects

Example

L_VOID TestFunction(HWND hParentWnd)
{
    /*initialize hParentWnd  with the handle of the parent window*/
    LAnnotationWindow MyLAnnotationWindow;
    HWND hWnd=MyLAnnotationWindow.CreateWnd(hParentWnd);

    if(hWnd!=NULL)
    {
       /*the function was successful */
       MyLAnnotationWindow.GetAutomationObject().SetTool(ANNTOOL_RULER);
    }
    else
    {
        /* there is an error */
    }
}