This sample demonstrates using the DsPdfViewer's text annotation reply tool. The reply tool shows in a panel on the right side of the viewer. Once a text annotation is added to a PDF, it shows in the reply tool panel where you can view, edit or reply to it.
window.onload = function(){
//DsPdfViewer.LicenseKey = "***key***";
const viewer = new DsPdfViewer("#viewer", {
workerSrc: "/document-solutions/javascript-pdf-viewer/demos/product-bundles/build/dspdfviewer.worker.js",
supportApi: getSupportApiSettings()
});
viewer.addDefaultPanels();
viewer.addAnnotationEditorPanel();
viewer.addReplyTool("expanded");
viewer.open("/document-solutions/javascript-pdf-viewer/demos/product-bundles/assets/pdf/viewer-reply-tool.pdf");
}