FPDFAnnot_GetObjectCount method

int FPDFAnnot_GetObjectCount(
  1. FPDF_ANNOTATION annot
)

Experimental API. Get the total number of objects in |annot|, including path objects, text objects, external objects, image objects, and shading objects.

annot - handle to an annotation.

Returns the number of objects in |annot|.

Implementation

int FPDFAnnot_GetObjectCount(FPDF_ANNOTATION annot) {
  return _FPDFAnnot_GetObjectCount(annot);
}