FPDFAnnot_RemoveObject function

  1. @Native<FPDF_BOOL Function(FPDF_ANNOTATION, Int)>(FPDF_ANNOTATION, ffi.Int)>()
int FPDFAnnot_RemoveObject(
  1. FPDF_ANNOTATION annot,
  2. int index
)

Experimental API. Remove the object in |annot| at |index|.

annot - handle to an annotation. index - the index of the object to be removed.

Return true if successful.

Implementation

@ffi.Native<FPDF_BOOL Function(FPDF_ANNOTATION, ffi.Int)>()
external int FPDFAnnot_RemoveObject(FPDF_ANNOTATION annot, int index);