ActiveReports.Viewer3 Request technical support
OnEndPage Method
See Also 


prnDoc
A System.Drawing.Printing.PrintDocument that represents the document being printed.
ppea
A System.Drawing.Printing.PrintPageEventArgs that contains data about how to print a page in the document.
Completes the control sequence that determines when and how to print a page of a document.

Syntax

Visual Basic (Declaration) 
Overrides Public Sub OnEndPage( _
   ByVal prnDoc As PrintDocument, _
   ByVal ppea As PrintPageEventArgs _
) 
Visual Basic (Usage)Copy Code
Dim instance As ActiveReportPrintControllerWithStatusDialog
Dim prnDoc As PrintDocument
Dim ppea As PrintPageEventArgs
 
instance.OnEndPage(prnDoc, ppea)
C# 
public override void OnEndPage( 
   PrintDocument prnDoc,
   PrintPageEventArgs ppea
)

Parameters

prnDoc
A System.Drawing.Printing.PrintDocument that represents the document being printed.
ppea
A System.Drawing.Printing.PrintPageEventArgs that contains data about how to print a page in the document.

Remarks

See the System.Drawing.Printing namespace for additional information.

See Also