FPDFPage_RemoveAnnot function

  1. @Native<FPDF_BOOL Function(FPDF_PAGE, Int)>(FPDF_PAGE, ffi.Int)>()
int FPDFPage_RemoveAnnot(
  1. FPDF_PAGE page,
  2. int index
)

Experimental API. Remove the annotation in |page| at |index|.

page - handle to a page. index - the index of the annotation.

Returns true if successful.

Implementation

@ffi.Native<FPDF_BOOL Function(FPDF_PAGE, ffi.Int)>()
external int FPDFPage_RemoveAnnot(FPDF_PAGE page, int index);