FPDFAnnot_GetObject method

FPDF_PAGEOBJECT FPDFAnnot_GetObject(
  1. FPDF_ANNOTATION annot,
  2. int index
)

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

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

Return a handle to the object, or NULL on failure.

Implementation

FPDF_PAGEOBJECT FPDFAnnot_GetObject(FPDF_ANNOTATION annot, int index) {
  return _FPDFAnnot_GetObject(annot, index);
}