FPDFAnnot_GetObjectCount function

  1. @Native<FPDF_ANNOTATION_SUBTYPE Function(FPDF_ANNOTATION)>(FPDF_ANNOTATION)>()
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

@ffi.Native<ffi.Int Function(FPDF_ANNOTATION)>()
external int FPDFAnnot_GetObjectCount(FPDF_ANNOTATION annot);