LAnnotationWindow::GetContainerObject
#include "ltwrappr.h"
LAnnContainer& LAnnotationWindow::GetContainerObject(L_VOID)
Gets the internal annotation container object used by the annotation control. This function is available in the Document/Medical Toolkits.
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
|
LTANN 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: |
|
|
Topics: |
|
|
|
|
|
|
|
|
|
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 */
/* do other processing���.*/
MyLAnnotationWindow.GetContainerObject().Save(TEXT("MyAnn.ann"), ANNFMT_NATIVE,FALSE);
}
else
{
/* there is an error */
}
}