FPDFFormObj_GetObject method
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
FPDF_PAGEOBJECT FPDFFormObj_GetObject(
FPDF_PAGEOBJECT form_object,
int index,
) {
return _FPDFFormObj_GetObject(form_object, index);
}