LAnnotationWindow::AnnPrint

Summary

Prints the annotations to the specified device context.

Syntax

#include "ltwrappr.h"

virtual L_INT LAnnotationWindow::AnnPrint(hDC, x=0, y=0, width=0, height=0)

Parameters

HDC hDC

Handle of the printer device context. The mapping mode of the device context must be MM_TEXT.

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.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Required DLLs and Libraries

Platforms

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; 
} 
Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.