 | PdfPageRender Method (IntPtr, Point, Size, PageRotate, RenderFlags) |
Render contents in a page to the device context specified by a location and size.
Namespace:
Patagames.Pdf.Net
Assembly:
Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.40.2704
Syntaxpublic void Render(
IntPtr hdc,
Point location,
Size size,
PageRotate rotate,
RenderFlags flags
)
Public Sub Render (
hdc As IntPtr,
location As Point,
size As Size,
rotate As PageRotate,
flags As RenderFlags
)
public:
void Render(
IntPtr hdc,
Point location,
Size size,
PageRotate rotate,
RenderFlags flags
)
member Render :
hdc : IntPtr *
location : Point *
size : Size *
rotate : PageRotate *
flags : RenderFlags -> unit
public void Render(
IntPtr hdc,
Point location,
Size size,
PageRotate rotate,
RenderFlags flags
)
function Render(hdc, location, size, rotate, flags);
Parameters
- hdc
- Type: SystemIntPtr
Device context - location
- Type: System.DrawingPoint
A Point structure that represents the Top-Left corner of the display area in the device coordinate. - size
- Type: System.DrawingSize
A Size structure that represents the horizontal and vertical size (in pixels) for displaying the page. - rotate
- Type: Patagames.Pdf.EnumsPageRotate
Page orientation. PageRotate for details. - flags
- Type: Patagames.Pdf.EnumsRenderFlags
RenderFlags.None for normal display, or combination of RenderFlags
See Also