LAnnotationWindow::AnnPrint
#include "ltwrappr.h"
virtual L_INT LAnnotationWindow::AnnPrint(hDC, x=0, y=0, width=0, height=0)
| HDC hDC; | /* handle of the printer device context */ | 
| L_INT x; | /* the starting x position */ | 
| L_INT y; | /* the starting y position */ | 
| L_UINT width; | /* the printed width */ | 
| L_UINT height; | /* the printed height */ | 
Prints the annotations to the specified device context. This function is available in the Document/Medical Toolkits.
| Parameter | Description | 
| hDC | Handle of the printer device context. The mapping mode of the device context must be MM_TEXT. | 
| x | The starting x position. | 
| y | The starting y position. | 
| width | The printed width. | 
| height | The printed height. | 
Returns
| SUCCESS | The function was successful. | 
| < 1 | An error occurred. Refer to Return Codes. | 
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, HDC hPrinterDC)
{
     LAnnotationWindow MyLAnnotationWindow;
     HWND hWnd=MyLAnnotationWindow.CreateWnd(hParentWnd);
    if(hWnd!=NULL)
    {
         /*the function was successful */
         /* do other processing���.*/
        MyLAnnotationWindow.AnnPrint(hPrinterDC,0,0,300,300);
    }
    else
    {
        /* there is an error */
    }
}