 | PdfiumFPDFClipPath_GetClipBox Method |
Get the bounding box for all paths and texts in this clipping path object.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFClipPath_GetClipBox(
IntPtr hClipPath,
out float left,
out float bottom,
out float right,
out float top
)
Public Shared Sub FPDFClipPath_GetClipBox (
hClipPath As IntPtr,
<OutAttribute> ByRef left As Single,
<OutAttribute> ByRef bottom As Single,
<OutAttribute> ByRef right As Single,
<OutAttribute> ByRef top As Single
)
public:
static void FPDFClipPath_GetClipBox(
IntPtr hClipPath,
[OutAttribute] float% left,
[OutAttribute] float% bottom,
[OutAttribute] float% right,
[OutAttribute] float% top
)
static member FPDFClipPath_GetClipBox :
hClipPath : IntPtr *
left : float32 byref *
bottom : float32 byref *
right : float32 byref *
top : float32 byref -> unit
public static void FPDFClipPath_GetClipBox(
IntPtr hClipPath,
/** @attribute OutAttribute */ /** @ref */float left,
/** @attribute OutAttribute */ /** @ref */float bottom,
/** @attribute OutAttribute */ /** @ref */float right,
/** @attribute OutAttribute */ /** @ref */float top
)
Patagames.Pdf.Pdfium.FPDFClipPath_GetClipBox = function(hClipPath, left, bottom, right, top);
Parameters
- hClipPath IntPtr
- Handle to a clipping path object. Returned by FPDFPageObj_GetClipPath(IntPtr), FPDF_CreateEmptyClipPath or FPDF_CreateClipPath(Single, Single, Single, Single).
- left Single
- Pointer to a value receiving the left of a rectangle (in points).
- bottom Single
- Pointer to a value receiving the top of a rectangle (in points).
- right Single
- Pointer to a value receiving the right of a rectangle (in points).
- top Single
- Pointer to a value receiving the bottom of a rectangle (in points).
See Also