Some test text!
Web / Guides / Remove annotations
Many users will remove or delete annotations using the WebViewer UI. The simplest way to do this with the WebViewer UI is to select the annotation and choose the delete/trash icon in the popup modal.
Annotations can also be deleted programmatically. You'll want to make sure that the annotations have already been loaded in the viewer.
For example to remove it immediately after the annotations are loaded then use the annotationsLoaded event:
WebViewer(...)
.then(instance => {
const { documentViewer, annotationManager } = instance.Core;
documentViewer.addEventListener('annotationsLoaded', () => {
const annots = annotationManager.getAnnotationsList();
// remove annotations
annotationManager.deleteAnnotations(annots);
});
});
Customize or modify a PDF before saving
Full sample code demonstrating how to customize document save/download. In the example, annotations are deleted for rerendering and flattened before saving.
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales