Structure Tags Tree Panel (Logical Structure Tree)

This example shows how to display the PDF logical structure tree (structure tags tree) panel. Clicking a 'Content' node in the tree will bring the associated document content into view.

window.onload = function(){ //DsPdfViewer.LicenseKey = "***key***"; const viewer = new DsPdfViewer("#viewer", { workerSrc: "/document-solutions/javascript-pdf-viewer/demos/product-bundles/build/dspdfviewer.worker.js" }); const structureTreePanelHandle = viewer.addStructureTreePanel(); viewer.open("/document-solutions/javascript-pdf-viewer/demos/product-bundles/assets/pdf/C1Olap-QuickStart.pdf").then(()=> { viewer.openPanel(structureTreePanelHandle); }); }
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Structure tree</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="./src/styles.css"> <script src="/document-solutions/javascript-pdf-viewer/demos/product-bundles/build/dspdfviewer.js"></script> <script src="/document-solutions/javascript-pdf-viewer/demos/resource/js/init.js"></script> <script src="./src/app.js"></script> </head> <body> <div id="viewer"></div> </body> </html>
#viewer { height: 100%; }