FPDFFormObj_RemoveObject method
Experimental API.
Remove |page_object| from |form_object|.
form_object - handle to a form object. page_object - handle to a page object to be removed from the form.
Returns TRUE on success.
Ownership of the removed |page_object| is transferred to the caller. Call FPDFPageObj_Destroy() on the removed page_object to free it.
Implementation
int FPDFFormObj_RemoveObject(
FPDF_PAGEOBJECT form_object,
FPDF_PAGEOBJECT page_object,
) {
return _FPDFFormObj_RemoveObject(form_object, page_object);
}