LAnnContainer::Load

#include "ltwrappr.h"

virtual L_INT LAnnContainer::Load(pFile, pLoadFileOption=NULL)

L_TCHAR L_FAR * pFile;

/* name of the file to load */

pLOADFILEOPTION pLoadFileOption;

/* pointer to optional extended load options */

Loads the specified annotation file. This function is available in the Document/Medical Toolkits.

Parameter

Description

pFile

Character string containing the name of the file to load.

pLoadFileOption

Pointer to optional extended load options. Pass NULL to use the default load options.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

LAnnContainer::Load will load annotations stored in LEAD files. It will also look for annotations stored as a Wang compatible TIFF tag in TIF files, and load those annotations.

The page number used when loading annotations is obtained from the LOADFILEOPTION structure.

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:

LAnnContainer::DeletePage, LAnnContainer::DeletePageMemory, LAnnContainer::DeletePageOffset, LAnnContainer::FileInfo, LAnnContainer::FileInfoMemory, LAnnContainer::FileInfoOffset, Class Members, LAnnotation::GetOptions, LAnnotation::SetOptions

Topics:

Annotation Functions: Input and Output

 

Implementing Annotations

 

New Annotation Features of Version 14.5

Example

L_VOID TestLoadSave(HWND hWnd)
{
   LAnnContainer LeadAContainer ;
   RECT rcClient ;
   ANNRECT AnnRect ;

   GetClientRect(hWnd,&rcClient) ;

   AnnRect.left = rcClient.left + 15 ;
   AnnRect.top = rcClient.top + 15 ;
   AnnRect.right = rcClient.right - 15 ;
   AnnRect.bottom = rcClient.bottom - 15;

   LeadAContainer.Create(hWnd,&AnnRect,TRUE) ;

   LeadAContainer.Save( TEXT("TEST.ANN")) ;

   //...

   LeadAContainer.Load(TEXT("TEST.ANN")) ;
}