Click or drag to resize

PdfiumFPDFText_GetRect Method

Get a rectangular area from the result generated by FPDFText_CountRects(IntPtr, Int32, Int32).

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public static void FPDFText_GetRect(
	IntPtr text_page,
	int rect_index,
	out double left,
	out double top,
	out double right,
	out double 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