Some test text!
Web / Guides / Annotation numbering
WebViewer has an option to automatically number annotations as you create them. When enabled, whenever you create an annotation or import one, it will receive the next available number, starting at 1. This associated number will be displayed for each annotation in the notes panel, allowing for easier tracking when working with a large amount of them.
You can enable this functionality by setting the webviewer option enableAnnotationNumbering
WebViewer({
path: 'lib',
initialDoc: 'https://pdftron.s3.amazonaws.com/downloads/pl/demo-annotated.pdf',
enableAnnotationNumbering: true,
}, viewerElement).then((instance) => {
// call apis here
})
WebViewer provides some APIs for customizing the default behaviors.
The annotation numbering functionality can be enabled, after intilization, by using enableAnnotationNumbering.
WebViewer(...)
.then(function(instance) {
instance.Core.annotationManager.enableAnnotationNumbering();
});
The annotation numbering functionality can be disabled by using disableAnnotationNumbering.
WebViewer(...)
.then(function(instance) {
instance.Core.annotationManager.disableAnnotationNumbering();
});
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales