FPDFAnnot_RemoveObject method

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

int FPDFAnnot_RemoveObject(FPDF_ANNOTATION annot, int index) {
  return _FPDFAnnot_RemoveObject(annot, index);
}