Click or drag to resize

PdfiumFPDFText_GetCharBox Method

Get bounding box of a particular character

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public static void FPDFText_GetCharBox(
	IntPtr text_page,
	int index,
	out double left,
	out double right,
	out double bottom,
	out double 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.
Remarks
All positions are measured in PDF "user space"
See Also