FPDFAnnot_GetObject function

  1. @Native<FPDF_PAGEOBJECT Function(FPDF_ANNOTATION, Int)>(FPDF_ANNOTATION, ffi.Int)>()
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

@ffi.Native<FPDF_PAGEOBJECT Function(FPDF_ANNOTATION, ffi.Int)>()
external FPDF_PAGEOBJECT FPDFAnnot_GetObject(FPDF_ANNOTATION annot, int index);