Leadtools.WinForms Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
Print Method
See Also 
Leadtools.WinForms Namespace > RasterImagePrinter Class : Print Method



image
The RasterImage to print.
page
The page number to print.
e
An PrintPageEventArgs object that contains print data.
Prints the specified RasterImage.

Syntax

Visual Basic (Declaration) 
Public Overridable Sub Print( _
   ByVal image As RasterImage, _
   ByVal page As Integer, _
   ByVal e As PrintPageEventArgs _
) 
Visual Basic (Usage)Copy Code
Dim instance As RasterImagePrinter
Dim image As RasterImage
Dim page As Integer
Dim e As PrintPageEventArgs
 
instance.Print(image, page, e)
C# 
public virtual void Print( 
   RasterImage image,
   int page,
   PrintPageEventArgs e
)
C++/CLI 
public:
virtual void Print( 
   RasterImage image,
   int page,
   PrintPageEventArgs e
) 

Parameters

image
The RasterImage to print.
page
The page number to print.
e
An PrintPageEventArgs object that contains print data.

Example

For an example, refer to RasterImagePrinter and ImageRectangle.

Remarks

page is 1-based.

You usually call this method from your PrintPage event handler of a PrintDocument object. You must pass the PrintPageEventArgs obtained in the PrintPage event handler to this method as the e parameter.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also