PDF Generation Template Editor
Open-source visual PDF generation engine with customizable templates and developer-friendly APIs.
Open-source visual PDF generation engine with customizable templates and developer-friendly APIs.
Since the form fields class inherits from the annotation class, the way to delete form fields is the same as delete annotations.
The steps to delete form fields are as follows:
This example shows how to delete form fields:
CPDFDocument document = new CPDFDocument();
document.open(pdfPath);
CPDFPage page = document.pageAtIndex(0);
List<CPDFAnnotation> annotationList = page.getAnnotations();
annotationList.remove(0);