Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
titleExample from CLAPI
// Get page count example

const docViewer = eventSource.window.getDocViewer('MyDocViewer');

docViewer.dispatchMethodCall('getPageCount')
     .then((numPages) => {
         console.log(numPages);
     });

// Opening several documents in different tabs

docViewer.dispatchMethodCall('openSpecifiedDocuments'. [{documentId: 'myfile.pdf', displayName: 'My File'}])
     .then((numPages) => {
         console.log(numPages);
     });

 

 

Further documentation here  

...