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.

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
LTDIS
LTDLG
LTEFX
LTFIL
LTIMG
LTSCR
LTTWN

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

Platforms

Win32, x64.

See Also

Functions:

Class Members

Topics:

Annotation Functions: Implementing Automation

 

Implementing Annotations

 

Automated User Interface for Annotations

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 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS Raster Imaging C++ Class Library Help