FPDFText_IsHyphen function

  1. @Native<Int Function(FPDF_TEXTPAGE, Int)>(FPDF_TEXTPAGE, ffi.Int)>()
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

@ffi.Native<ffi.Int Function(FPDF_TEXTPAGE, ffi.Int)>()
external int FPDFText_IsHyphen(FPDF_TEXTPAGE text_page, int index);