 | PdfiumFPDFText_GetRect Method |
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFText_GetRect(
IntPtr text_page,
int rect_index,
out double left,
out double top,
out double right,
out double bottom
)
Public Shared Sub FPDFText_GetRect (
text_page As IntPtr,
rect_index As Integer,
<OutAttribute> ByRef left As Double,
<OutAttribute> ByRef top As Double,
<OutAttribute> ByRef right As Double,
<OutAttribute> ByRef bottom As Double
)
public:
static void FPDFText_GetRect(
IntPtr text_page,
int rect_index,
[OutAttribute] double% left,
[OutAttribute] double% top,
[OutAttribute] double% right,
[OutAttribute] double% bottom
)
static member FPDFText_GetRect :
text_page : IntPtr *
rect_index : int *
left : float byref *
top : float byref *
right : float byref *
bottom : float byref -> unit
public static void FPDFText_GetRect(
IntPtr text_page,
int rect_index,
/** @attribute OutAttribute */ /** @ref */double left,
/** @attribute OutAttribute */ /** @ref */double top,
/** @attribute OutAttribute */ /** @ref */double right,
/** @attribute OutAttribute */ /** @ref */double bottom
)
Patagames.Pdf.Pdfium.FPDFText_GetRect = function(text_page, rect_index, left, top, right, bottom);
Parameters
- text_page IntPtr
- Handle to a text page information structure. Returned by FPDFText_LoadPage(IntPtr) function
- rect_index Int32
- Zero-based index for the rectangle
- left Double
- Pointer to a double value receiving the rectangle left boundary.
- top Double
- Pointer to a double value receiving the rectangle top boundary
- right Double
- Pointer to a double value receiving the rectangle right boundary.
- bottom Double
- Pointer to a double value receiving the rectangle bottom boundary
See Also