 | PdfiumFPDFPageObj_GetBBox(IntPtr, FS_MATRIX, Single, Single, Single, Single) Method |
Get page object bounding box.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFPageObj_GetBBox(
IntPtr page_obj,
FS_MATRIX pMatrix,
out float left,
out float top,
out float right,
out float bottom
)
Public Shared Sub FPDFPageObj_GetBBox (
page_obj As IntPtr,
pMatrix As FS_MATRIX,
<OutAttribute> ByRef left As Single,
<OutAttribute> ByRef top As Single,
<OutAttribute> ByRef right As Single,
<OutAttribute> ByRef bottom As Single
)
public:
static void FPDFPageObj_GetBBox(
IntPtr page_obj,
FS_MATRIX^ pMatrix,
[OutAttribute] float% left,
[OutAttribute] float% top,
[OutAttribute] float% right,
[OutAttribute] float% bottom
)
static member FPDFPageObj_GetBBox :
page_obj : IntPtr *
pMatrix : FS_MATRIX *
left : float32 byref *
top : float32 byref *
right : float32 byref *
bottom : float32 byref -> unit
public static void FPDFPageObj_GetBBox(
IntPtr page_obj,
FS_MATRIX pMatrix,
/** @attribute OutAttribute */ /** @ref */float left,
/** @attribute OutAttribute */ /** @ref */float top,
/** @attribute OutAttribute */ /** @ref */float right,
/** @attribute OutAttribute */ /** @ref */float bottom
)
Patagames.Pdf.Pdfium.FPDFPageObj_GetBBox = function(page_obj, pMatrix, left, top, right, bottom);
Parameters
- page_obj IntPtr
- Handle to a page object. Returned by FPDFPageObj_Create(PageObjectTypes) or FPDFPage_GetObject(IntPtr, Int32)
- pMatrix FS_MATRIX
- Modify box before return. Can be null
- left Single
- Pointer to a value receiving the left of a rectangle (in points).
- top Single
- Pointer to a value receiving the bottom of a rectangle (in points).
- right Single
- Pointer to a value receiving the right of a rectangle (in points).
- bottom Single
- Pointer to a value receiving the top of a rectangle (in points).
See Also