 | PdfiumFPDFText_GetCharBox Method |
Get bounding box of a particular character
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFText_GetCharBox(
IntPtr text_page,
int index,
out double left,
out double right,
out double bottom,
out double top
)
Public Shared Sub FPDFText_GetCharBox (
text_page As IntPtr,
index As Integer,
<OutAttribute> ByRef left As Double,
<OutAttribute> ByRef right As Double,
<OutAttribute> ByRef bottom As Double,
<OutAttribute> ByRef top As Double
)
public:
static void FPDFText_GetCharBox(
IntPtr text_page,
int index,
[OutAttribute] double% left,
[OutAttribute] double% right,
[OutAttribute] double% bottom,
[OutAttribute] double% top
)
static member FPDFText_GetCharBox :
text_page : IntPtr *
index : int *
left : float byref *
right : float byref *
bottom : float byref *
top : float byref -> unit
public static void FPDFText_GetCharBox(
IntPtr text_page,
int index,
/** @attribute OutAttribute */ /** @ref */double left,
/** @attribute OutAttribute */ /** @ref */double right,
/** @attribute OutAttribute */ /** @ref */double bottom,
/** @attribute OutAttribute */ /** @ref */double top
)
Patagames.Pdf.Pdfium.FPDFText_GetCharBox = function(text_page, index, left, right, bottom, top);
Parameters
- text_page IntPtr
- Handle to a text page information structure. Returned by FPDFText_LoadPage(IntPtr) function
- index Int32
- Zero-based index of the character.
- left Double
- Pointer to a double number receiving left position of the character box
- right Double
- Pointer to a double number receiving right position of the character box.
- bottom Double
- Pointer to a double number receiving bottom position of the character box
- top Double
- Pointer to a double number receiving top position of the character box.
RemarksAll positions are measured in PDF "user space"
See Also