FPDFPage_RemoveAnnot method

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

int FPDFPage_RemoveAnnot(FPDF_PAGE page, int index) {
  return _FPDFPage_RemoveAnnot(page, index);
}