 | PdfiumFPDFPage_GetBleedBox Method |
Get "BleedBox" entry from the page dictionary.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntaxpublic static bool FPDFPage_GetBleedBox(
IntPtr page,
out float left,
out float bottom,
out float right,
out float top
)
Public Shared Function FPDFPage_GetBleedBox (
page As IntPtr,
<OutAttribute> ByRef left As Single,
<OutAttribute> ByRef bottom As Single,
<OutAttribute> ByRef right As Single,
<OutAttribute> ByRef top As Single
) As Boolean
public:
static bool FPDFPage_GetBleedBox(
IntPtr page,
[OutAttribute] float% left,
[OutAttribute] float% bottom,
[OutAttribute] float% right,
[OutAttribute] float% top
)
static member FPDFPage_GetBleedBox :
page : IntPtr *
left : float32 byref *
bottom : float32 byref *
right : float32 byref *
top : float32 byref -> bool public static boolean FPDFPage_GetBleedBox(
IntPtr page,
/** @attribute OutAttribute */ /** @ref */float left,
/** @attribute OutAttribute */ /** @ref */float bottom,
/** @attribute OutAttribute */ /** @ref */float right,
/** @attribute OutAttribute */ /** @ref */float top
)
Patagames.Pdf.Pdfium.FPDFPage_GetBleedBox = function(page, left, bottom, right, top);
Parameters
- page IntPtr
- Handle to a page. Returned by FPDF_LoadPage(IntPtr, Int32) function
- left Single
- Pointer to a double value receiving the left of the rectangle.
- bottom Single
- Pointer to a double value receiving the bottom of the rectangle.
- right Single
- Pointer to a double value receiving the right of the rectangle.
- top Single
- Pointer to a double value receiving the top of the rectangle.
Return Value
BooleanTrue if success, else False
RemarksA rectangle, expressed in default user space units, defining the region to which the contents of the page should be clipped
when output in a production environment. Default value: the value of CropBox.
See Also