FPDFText_GetSchCount method

int FPDFText_GetSchCount(
  1. FPDF_SCHHANDLE handle
)

Function: FPDFText_GetSchCount Get the number of matched characters in the search result. Parameters: handle - A search context handle returned by FPDFText_FindStart. Return Value: Number of matched characters.

Implementation

int FPDFText_GetSchCount(FPDF_SCHHANDLE handle) {
  return _FPDFText_GetSchCount(handle);
}