 | PdfiumFPDFPageObj_GetBBox(IntPtr, FS_MATRIX, Int32, Int32, Int32, Int32) 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 int left,
out int top,
out int right,
out int bottom
)
Public Shared Sub FPDFPageObj_GetBBox (
page_obj As IntPtr,
pMatrix As FS_MATRIX,
<OutAttribute> ByRef left As Integer,
<OutAttribute> ByRef top As Integer,
<OutAttribute> ByRef right As Integer,
<OutAttribute> ByRef bottom As Integer
)
public:
static void FPDFPageObj_GetBBox(
IntPtr page_obj,
FS_MATRIX^ pMatrix,
[OutAttribute] int% left,
[OutAttribute] int% top,
[OutAttribute] int% right,
[OutAttribute] int% bottom
)
static member FPDFPageObj_GetBBox :
page_obj : IntPtr *
pMatrix : FS_MATRIX *
left : int byref *
top : int byref *
right : int byref *
bottom : int byref -> unit
public static void FPDFPageObj_GetBBox(
IntPtr page_obj,
FS_MATRIX pMatrix,
/** @attribute OutAttribute */ /** @ref */int left,
/** @attribute OutAttribute */ /** @ref */int top,
/** @attribute OutAttribute */ /** @ref */int right,
/** @attribute OutAttribute */ /** @ref */int 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 Int32
- Pointer to a value receiving the left of a rectangle (in points).
- top Int32
- Pointer to a value receiving the bottom of a rectangle (in points).
- right Int32
- Pointer to a value receiving the right of a rectangle (in points).
- bottom Int32
- Pointer to a value receiving the top of a rectangle (in points).
See Also