 | PdfPrintDocumentOnAfterRenderPage Method |
Raises the AfterRenderPage event.
Namespace:
Patagames.Pdf.Net.Controls.WinForms
Assembly:
Patagames.Pdf.WinForms (in Patagames.Pdf.WinForms.dll) Version: 4.40.2704
Syntaxprotected virtual void OnAfterRenderPage(
Graphics g,
PdfPage page,
int x,
int y,
int width,
int height,
PageRotate rotation
)
Protected Overridable Sub OnAfterRenderPage (
g As Graphics,
page As PdfPage,
x As Integer,
y As Integer,
width As Integer,
height As Integer,
rotation As PageRotate
)
protected:
virtual void OnAfterRenderPage(
Graphics^ g,
PdfPage^ page,
int x,
int y,
int width,
int height,
PageRotate rotation
)
abstract OnAfterRenderPage :
g : Graphics *
page : PdfPage *
x : int *
y : int *
width : int *
height : int *
rotation : PageRotate -> unit
override OnAfterRenderPage :
g : Graphics *
page : PdfPage *
x : int *
y : int *
width : int *
height : int *
rotation : PageRotate -> unit
protected void OnAfterRenderPage(
Graphics g,
PdfPage page,
int x,
int y,
int width,
int height,
PageRotate rotation
)
function OnAfterRenderPage(g, page, x, y, width, height, rotation);
Parameters
- g
- Type: System.DrawingGraphics
Drawing surface. - page
- Type: Patagames.Pdf.NetPdfPage
The pagewhat will be printed. - x
- Type: SystemInt32
Horizontal position of the page on the drawing surface. - y
- Type: SystemInt32
Vertical position of the page on the drawing surface. - width
- Type: SystemInt32
The page's width calculated to match the sheet size. - height
- Type: SystemInt32
The page's height calculated to match the sheet size. - rotation
- Type: Patagames.Pdf.EnumsPageRotate
The page rotation.
See Also