 | PdfPageRenderEx Method |
Render contents in a page to a device-independent bitmap specified by a coordinate pair, a width, and a height.
Namespace:
Patagames.Pdf.Net
Assemblies:
Patagames.Pdf.Xamarin.iOS (in Patagames.Pdf.Xamarin.iOS.dll) Version: 4.84.2704
Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.84.2704
Syntaxpublic void RenderEx(
PdfBitmap bitmap,
int x,
int y,
int width,
int height,
PageRotate rotate,
RenderFlags flags
)
Public Sub RenderEx (
bitmap As PdfBitmap,
x As Integer,
y As Integer,
width As Integer,
height As Integer,
rotate As PageRotate,
flags As RenderFlags
)
public:
void RenderEx(
PdfBitmap^ bitmap,
int x,
int y,
int width,
int height,
PageRotate rotate,
RenderFlags flags
)
member RenderEx :
bitmap : PdfBitmap *
x : int *
y : int *
width : int *
height : int *
rotate : PageRotate *
flags : RenderFlags -> unit
public void RenderEx(
PdfBitmap bitmap,
int x,
int y,
int width,
int height,
PageRotate rotate,
RenderFlags flags
)
function RenderEx(bitmap, x, y, width, height, rotate, flags);
Parameters
- bitmap
- Type: Patagames.Pdf.NetPdfBitmap
Instance of PdfBitmap class. - x
- Type: SystemInt32
Left pixel position of the display area in the device coordinate - y
- Type: SystemInt32
Top pixel position of the display area in the device coordinate - width
- Type: SystemInt32
Horizontal size (in pixels) for displaying the page. - height
- Type: SystemInt32
Vertical size (in pixels) for displaying the page. - rotate
- Type: Patagames.Pdf.EnumsPageRotate
Page orientation. See PageRotate for details. - flags
- Type: Patagames.Pdf.EnumsRenderFlags
RenderFlags.None for normal display, or combination of RenderFlags
See Also