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.
The steps to delete an annotation are as follows:
This example shows how to delete annotations:
// Retrieve the page object for annotating.
CPDFPage page = document.pageAtIndex(0);
// Retrieve the list of annotations for the page.
List<CPDFAnnotation> annotations = page.getAnnotations();
if (annotations != null && annotations.size() > 0) {
// Locate the desired annotation in the list and remove it.
page.deleteAnnotation(annotations.get(0));
}