FPDFText_IsHyphen method

int FPDFText_IsHyphen(
  1. FPDF_TEXTPAGE text_page,
  2. int index
)

Experimental API. Function: FPDFText_IsHyphen Get if a character in a page is a hyphen. Parameters: text_page - Handle to a text page information structure. Returned by FPDFText_LoadPage function. index - Zero-based index of the character. Return value: 1 if the character is a hyphen. 0 if the character is not a hyphen. -1 if there was an error.

Implementation

int FPDFText_IsHyphen(FPDF_TEXTPAGE text_page, int index) {
  return _FPDFText_IsHyphen(text_page, index);
}