FPDFFormObj_GetObject function

  1. @Native<FPDF_PAGEOBJECT Function(FPDF_PAGEOBJECT, UnsignedLong)>(FPDF_PAGEOBJECT, ffi.UnsignedLong)>()
FPDF_PAGEOBJECT FPDFFormObj_GetObject(
  1. FPDF_PAGEOBJECT form_object,
  2. int index
)

Get page object in |form_object| at |index|.

form_object - handle to a form object. index - the 0-based index of a page object.

Returns the handle to the page object, or NULL on error.

Implementation

@ffi.Native<FPDF_PAGEOBJECT Function(FPDF_PAGEOBJECT, ffi.UnsignedLong)>()
external FPDF_PAGEOBJECT FPDFFormObj_GetObject(
  FPDF_PAGEOBJECT form_object,
  int index,
);