FPDFText_FindStart function
- @Native<FPDF_SCHHANDLE Function(FPDF_TEXTPAGE, FPDF_WIDESTRING, UnsignedLong, Int)>(FPDF_TEXTPAGE, FPDF_WIDESTRING, ffi.UnsignedLong, ffi.Int)>()
- FPDF_TEXTPAGE text_page,
- FPDF_WIDESTRING findwhat,
- int flags,
- int start_index,
Function: FPDFText_FindStart Start a search. Parameters: text_page - Handle to a text page information structure. Returned by FPDFText_LoadPage function. findwhat - A unicode match pattern. flags - Option flags. start_index - Start from this character. -1 for end of the page. Return Value: A handle for the search context. FPDFText_FindClose must be called to release this handle.
Implementation
@ffi.Native<
FPDF_SCHHANDLE Function(
FPDF_TEXTPAGE,
FPDF_WIDESTRING,
ffi.UnsignedLong,
ffi.Int,
)
>()
external FPDF_SCHHANDLE FPDFText_FindStart(
FPDF_TEXTPAGE text_page,
FPDF_WIDESTRING findwhat,
int flags,
int start_index,
);