ActiveReports 8
PrintPage Event
See Also 
GrapeCity.ActiveReports.Extensibility.v8 Assembly > GrapeCity.ActiveReports.Extensibility.Printing Namespace > Printer Class : PrintPage Event

Glossary Item Box

Syntax

Visual Basic (Declaration) 
Public Event PrintPage As System.Drawing.Printing.PrintPageEventHandler
C# 
public event System.Drawing.Printing.PrintPageEventHandler PrintPage

Event Data

The event handler receives an argument of type System.Drawing.Printing.PrintPageEventArgs containing data related to this event. The following PrintPageEventArgs properties provide information specific to this event.

PropertyDescription
Cancel Gets or sets a value indicating whether the print job should be canceled.
Graphics Gets the System.Drawing.Graphics used to paint the page.
HasMorePages Gets or sets a value indicating whether an additional page should be printed.
MarginBounds Gets the rectangular area that represents the portion of the page inside the margins.
PageBounds Gets the rectangular area that represents the total area of the page.
PageSettings Gets the page settings for the current page.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also