FPDFText_FindStart method
FPDF_SCHHANDLE
FPDFText_FindStart(
- 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
FPDF_SCHHANDLE FPDFText_FindStart(
FPDF_TEXTPAGE text_page,
FPDF_WIDESTRING findwhat,
int flags,
int start_index,
) {
return _FPDFText_FindStart(text_page, findwhat, flags, start_index);
}