 | PdfiumFPDFText_GetBoundedText Method |
Extract unicode text within a rectangular boundary on the page
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static string FPDFText_GetBoundedText(
IntPtr text_page,
double left,
double top,
double right,
double bottom
)
Public Shared Function FPDFText_GetBoundedText (
text_page As IntPtr,
left As Double,
top As Double,
right As Double,
bottom As Double
) As String
public:
static String^ FPDFText_GetBoundedText(
IntPtr text_page,
double left,
double top,
double right,
double bottom
)
static member FPDFText_GetBoundedText :
text_page : IntPtr *
left : float *
top : float *
right : float *
bottom : float -> string
public static String FPDFText_GetBoundedText(
IntPtr text_page,
double left,
double top,
double right,
double bottom
)
Patagames.Pdf.Pdfium.FPDFText_GetBoundedText = function(text_page, left, top, right, bottom);
Parameters
- text_page IntPtr
- Handle to a text page information structure. Returned by FPDFText_LoadPage(IntPtr) function.
- left Double
- Left boundary
- top Double
- Top boundary
- right Double
- Right boundary
- bottom Double
- Bottom boundary.
Return Value
StringUnicode text within a rectangular boundary on the page
See Also