#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.
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. |
Win32, x64.
See Also
Functions: |
|
Topics: |
|
|
|
|
Example
L_INT LAnnotationWindow_AnnPrintExample(HWND hParentWnd, HDC hPrinterDC) { L_INT nRet; LAnnotationWindow MyLAnnotationWindow; HWND hWnd=MyLAnnotationWindow.CreateWnd(hParentWnd); if(hWnd!=NULL) { /*the function was successful */ /* do other processing……….*/ nRet = MyLAnnotationWindow.AnnPrint(hPrinterDC,0,0,300,300); if(nRet != SUCCESS) return nRet; } else { /* there is an error */ return FAILURE; } return SUCCESS; }