Programmatically delete all form fields in a PDF
by Conor | October 11, 2012
All form fields in a PDF can be deleted with the assistance of the DeleteFormField function in Foxit Quick PDF Library. Some JScript sample code that demonstrates how to do this is shown below: DPL.LoadFromFile("pdf_form.pdf"); TotalFormFields = DPL.FormFieldCount() While (TotalFormFields > 0) { DPL.DeleteFormField(TotalFormFields); TotalFormfields = TotalFormFields - 1; } DPL.SaveToFile("no_form_fields.pdf"); This article refers to […]
Keep reading