new WebViewerInstance()
A single instance of webviewer. Can be retrieved from the
global WebViewer function.
This class is not instantiable.
Example
WebViewer({...options}, document.getElementById('viewer')) .then(webviewerInstance => { // Call APIs on webviewerInstance here })
Classes
Namespaces
Members
-
Actions
-
Actions namespace
- See:
-
annotationPopup
-
An instance of Popup that can be used to edit items in the annotation popup component
- Implements:
Example
WebViewer(...) .then(function (instance) { instance.annotationPopup.someAPI(); });
-
Annotations
-
Annotations namespace
- See:
-
annotManager
-
AnnotationManager instance
Example
WebViewer(...) .then(function(instance) { var annotManager = instance.annotManager; // annotManager.someAPI(); });
-
contextMenuPopup
-
An instance of Popup that can be used to edit items in the context menu popup component
- Implements:
Example
WebViewer(...) .then(function (instance) { instance.contextMenuPopup.someAPI(); });
-
CoreControls
-
CoreControls namespace
- See:
-
docViewer
-
DocumentViewer instance
Example
WebViewer(...) .then(function(instance) { var docViewer = instance.docViewer; // docViewer.someAPI(); });
-
Feature
-
Contains string enums for all features for WebViewer UI
Properties:
Name Type Description Measurement
string Measurement tools that can create annotations to measure distance, perimeter and area. Ribbons
string A collection of toolbar groups to switch between. Annotations
string Render annotations in the document and be able to edit them. Download
string A download button to download the current document. FilePicker
string Ctrl/Cmd + O hotkey and a open file button that can be clicked to load local files. LocalStorage
string Store and retrieve tool styles from window.localStorage. NotesPanel
string A panel that displays information of listable annotations. Print
string Ctrl/Cmd + P hotkey and a print button that can be clicked to print the current document. Redaction
string Redaction tools that can redact text or areas. Need fullAPI to be on to use this feature. TextSelection
string Ability to select text in a document. TouchScrollLock
string Lock document scrolling in one direction in mobile devices. Copy
string Ability to copy text or annotations use Ctrl/Cmd + C hotkeys or the copy button. MultipleViewerMerging
string Ability to drag and drop pages from one instance of WebViewer into another ThumbnailMerging
string Ability to drag and drop a file into the thumbnail panel to merge ThumbnailReordering
string Ability to reorder pages using the thumbnail panel PageNavigation
string Ability to navigate through pages using mouse wheel, arrow up/down keys and the swipe gesture. MouseWheelZoom
string Ability to zoom when holding ctrl/cmd + mouse wheel. Search
string Ctrl/Cmd + F hotkey and a search button that can be clicked to search the current document. MathSymbols
string Ability to add math symbols in free text editor OutlineEditing
string Ability to add, move and delete outlines in the outlines panel. This feature is only available when `fullAPI: true` is used. NotesPanelVirtualizedList
string Ability to use a virtualized list in the note panel. Will limit the number of notes rendered on the DOM Example
WebViewer(...) .then(function(instance) { var Feature = instance.Feature; instance.enableFeatures([Feature.Measurement]); instance.disableFeatures([Feature.Copy]); });
-
FitMode
-
Contains all possible modes for fitting/zooming pages to the viewer. The behavior may vary depending on the LayoutMode.
Properties:
Name Type Description FitPage
string A fit mode where the zoom level is fixed to the width or height of the page, whichever is smaller. FitWidth
string A fit mode where the zoom level is fixed to the width of the page. Zoom
string A fit mode where the zoom level is not fixed. Example
WebViewer(...) .then(function(instance) { var FitMode = instance.FitMode; instance.setFitMode(FitMode.FitWidth); });
-
hotkeys
-
An instance of Hotkeys that can be used to enable, disable or register custom hotkeys in the viewer
-
iframeWindow
-
WebViewer iframe window object
Example
WebViewer(...) .then(function(instance) { var iframeWindow = instance.iframeWindow; // iframeWindow.SomeNamespace // iframeWindow.document.querySelector('.some-element'); });
-
LayoutMode
-
Contains string enums for all layouts for WebViewer. They are used to dictate how pages are placed within the viewer.
Properties:
Name Type Description Single
string Only the current page will be visible. Continuous
string All pages are visible in one column. Facing
string Up to two pages will be visible. FacingContinuous
string All pages visible in two columns. FacingCover
string All pages visible in two columns, with an even numbered page rendered first. (i.e. The first page of the document is rendered by itself on the right side of the viewer to simulate a book cover.) FacingCoverContinuous
string All pages visible, with an even numbered page rendered first. (i.e. The first page of the document is rendered by itself on the right side of the viewer to simulate a book cover.) Example
WebViewer(...) .then(function(instance) { var LayoutMode = instance.LayoutMode; instance.setLayoutMode(LayoutMode.Single); });
-
mentions
-
An instance of MentionsManager that can be used to allow mentioning people in a textarea in the notes panel.
-
PDFNet
-
PDFNet namespace
- See:
-
settingsMenuOverlay
-
An instance of MenuOverlay that can be used to edit items in the settings menu overlay component.
- Implements:
Example
WebViewer(...) .then(function (instance) { instance.settingsMenuOverlay.someAPI(); });
-
textPopup
-
An instance of Popup that can be used to edit items in the text popup component
- Implements:
Example
WebViewer(...) .then(function (instance) { instance.textPopup.someAPI(); });
-
Tools
-
Tools namespace
- See:
-
VerificationOptions
-
VerificationOptions namespace
- See:
Methods
-
addSearchListener(searchListener)
-
Adds a listener function to be called when search is completed.
Parameters:
Name Type Description searchListener
WebViewerInstance.searchListener Callback function that will be triggered when search completed Example
WebViewer(...) .then(function(instance) { function searchListener(searchValue, options, results) { console.log(searchValue, options, results); }; instance.addSearchListener(searchListener); });
-
addSortStrategy(sortStrategy)
-
Adds a sorting strategy in notes panel.
Parameters:
Name Type Description sortStrategy
object Sorting strategy that will be used to sort notes Properties
Name Type Description name
string Name of the strategy, which will be shown in notes panel's dropdown getSortedNotes
WebViewerInstance.getSortedNotes Function that takes unsorted notes (annotations) and returns them sorted shouldRenderSeparator
WebViewerInstance.shouldRenderSeparator Function that returns when a separator should be rendered getSeparatorContent
WebViewerInstance.getSeparatorContent Function that returns the content of a separator Example
WebViewer(...) .then(function(instance) { var mySortStrategy = { name: 'annotationType', getSortedNotes: function(notes) { return notes.sort(function(a ,b) { if (a.Subject < b.Subject) return -1; if (a.Subject > b.Subject) return 1; if (a.Subject === b.Subject) return 0; }); }, shouldRenderSeparator: function(prevNote, currNote) { return prevNote.Subject !== currNote.Subject; }, getSeparatorContent: function(prevNote, currNote) { return currNote.Subject; } }; instance.addSortStrategy(mySortStrategy); });
-
cancelPrint()
-
Stops on-going page processing to cancel a print job.
Example
WebViewer(...) .then(function(instance) { var docViewer = instance.docViewer; // you must have a document loaded when calling this api docViewer.on('documentLoaded', function() { instance.print(); instance.cancelPrint(); }); });
-
closeDocument()
-
Closes the document that's currently opened.
Returns:
A promise resolved after document is closed.- Type
- Promise.<void>
Example
WebViewer(...) .then(function(instance) { var docViewer = instance.docViewer; // you must have a document loaded when calling this api docViewer.on('documentLoaded', function() { setTimeout(function() { instance.closeDocument().then(function() { console.log('Document is closed'); }); }, 3000); }); });
-
closeElements(dataElements)
-
Sets visibility states of the elements to be hidden. Note that closeElements works only for panel/overlay/popup/modal elements.
Parameters:
Name Type Description dataElements
Array.<string> Array of data-element attribute values for DOM elements. To find data-element of a DOM element, refer to Finding data-element attribute values. Example
WebViewer(...) .then(function(instance) { // closes (hides) text popup and left panel in the UI instance.closeElements([ 'menuOverlay', 'leftPanel' ]); });
-
dangerouslySetNoteTransformFunction(noteTransformFunction)
-
Accepts a function that will be called every time a note in the left panel is rendered. This function can be used to add, edit or hide the contents of the note.
Please carefully read the documentation and the notes below before using this API
This API is experimental and should be used sparingly. If you find you are heavily relying on this function, it is recommended that you fork the UI repo and make the changes directly in the source code (Note.js).
The structure of the HTML that is passed into this function may change may change without notice in any release. Please make sure to test this function thoroughly when upgrading WebViewer versions.
There may be unexpected behaviour when using this API. The HTML that is provided is controlled by React, and sometimes React will override any changes you make. If you find any unexpected behaviour when using this API, then this API probably won't work for your use case and you will have to make the changes directly in the source code.
Do not use document.createElement to create DOM elements. Instead, use the provided `createElement` utility function provided as the third parameter. Do not use HTMLElement.removeChild or any other APIs that remove elements from the DOM. Doing so will cause React to lose reference to this node, and will crash. If you need to hide an HTML element, set the style to `display: none` instead.
Parameters:
Name Type Description noteTransformFunction
WebViewerInstance.NoteTransformFunction The function that will be used to transform notes in the left panel Example
Webviewer(...) .then(instance => { instance.dangerouslySetNoteTransformFunction((wrapper, state, createElement) => { // Change the title of every note wrapper.querySelector('.author-and-time>span').innerHTML = 'My custom note title'; // Add a button that alerts the user when clicked const button = createElement('button'); button.onmousedown = (e) => { if(state.isSelected) { alert('Hello world!'); } else { alert('Goodbye world!'); } }; button.innerHTML = 'Alert me' wrapper.appendChild(button); // Add a button that makes the annotation blue const button = createElement('button'); button.onmousedown = (e) => { state.annotation.StrokeColor = new instance.Annotations.Color(0, 0, 255); instance.annotManager.redrawAnnotation(state.annotation) }; button.innerHTML = 'Make me blue' wrapper.appendChild(button); }) });
-
disableClearSearchOnPanelClose()
-
Disable clearing search results when user closes search panel. When disabled, search results are kept even if user closes and reopens search panel. Note, mobile devices never clear search results even if this setting is enabled. This is because the panel needs to be closed to view the search results on the document.
Example
WebViewer(...) .then(function(instance) { instance.disableClearSearchOnPanelClose(); });
-
disableElements(dataElements)
-
Unmount multiple elements in the DOM. Note that this ONLY removes the DOM elements without disabling related features.
Parameters:
Name Type Description dataElements
Array.<string> Array of data-element attribute values for DOM elements. To find data-element of a DOM element, refer to Finding data-element attribute values. Examples
WebViewer(...) .then(function(instance) { // remove left panel and left panel button from the DOM instance.disableElements([ 'leftPanel', 'leftPanelButton' ]); });
WebViewer(...) .then(function(instance) { // remove the 'Edit' toolbar group instance.disableElements(['toolbarGroup-Edit']); });
-
disableFeatures(features)
-
Disable certain features in the WebViewer UI.
Parameters:
Name Type Description features
Array.<string> Array of features to disable. Example
WebViewer(...) .then(function(instance) { instance.disableFeatures(instance.Feature.Measurement); });
-
disableReplyForAnnotations(isReplyDisabled)
-
Disable reply for annotations determined by the function passed in as parameter
Parameters:
Name Type Description isReplyDisabled
WebViewerInstance.storeisReplyDisabled Function that takes an annotation and returns if the reply of the annotation should be disabled. Example
WebViewer(...) .then(function(instance) { // disable reply for all Freehand annotations instance.disableReplyForAnnotations(function(annotation) { return annotation instanceof instance.Annotations.FreeHandAnnotation; }); });
-
disableTools( [toolNames])
-
Disable multiple tools. This API uses disableElements internally to remove tool buttons from the DOM, and also disable the corresponding hotkeys.
Parameters:
Name Type Argument Default Description toolNames
Array.<string> <optional>
all tools Array of name of the tools, either from tool names list or the name you registered your custom tool with. If nothing is passed, all tools will be disabled. Example
WebViewer(...) .then(function(instance) { // disable sticky annotation tool and free text tool instance.disableTools([ 'AnnotationCreateSticky', 'AnnotationCreateFreeText' ]); });
-
dispose()
-
Cleans up listeners and data from the WebViewer instance. Should be called when removing the WebViewer instance from the DOM.
-
downloadPdf( [options])
-
Downloads the pdf document with or without annotations added by WebViewer UI.
Parameters:
Name Type Argument Description options
object <optional>
An object that contains the following download options. Properties
Name Type Argument Default Description filename
string <optional>
The filename of the downloaded document. downloadType
string <optional>
'pdf' The type to download the file as, by default this is "pdf". PDF and image files can only be downloaded as PDFs, but office files can be downloaded as "pdf" or as "office" if you want to get the original file without annotations. xfdfString
string <optional>
An xfdf string containing annotation data to be used when downloading. Use this option instead of `includeAnnotations` if not all annotations need to be contained in the downloaded file. includeAnnotations
boolean <optional>
true Whether or not to include annotations added by WebViewer UI. flatten
boolean <optional>
Whether or not to flatten all the annotations in the downloaded document. Only useful fullAPI is enabled and either `xfdfString` or `includeAnnotations` is used. documentToBeDownloaded
CoreControls.Document <optional>
A document to be download instead of the one loaded by Document Viewer. useDisplayAuthor
boolean <optional>
Whether to export annotations with the Display Author name from annotationManager.getDisplayAuthor() flags
number <optional>
CoreControls.SaveOptions.REMOVE_UNUSED The flags with which to save the document. Possible values include `CoreControls.SaveOptions.REMOVE_UNUSED` (remove unused objects during save) and `CoreControls.SaveOptions.LINEARIZED` (optimize the document for fast web view and remove unused objects). Returns:
A promise that is resolved once the document is downloaded.- Type
- Promise.<any>
Example
WebViewer(...) .then(async function(instance) { var docViewer = instance.docViewer; var annotManager = instance.annotManager; // you must have a document loaded when calling this api docViewer.on('documentLoaded', async function() { // download pdf without annotations added by WebViewer UI await instance.downloadPdf({ includeAnnotations: false, }); console.log('Downloaded the first time!') // download pdf with all annotations flattened await instance.downloadPdf({ includeAnnotations: true, flatten: true, }); console.log('Downloaded a second time!') // download pdf without links const xfdfString = await annotManager.exportAnnotations({ links: false }); await instance.downloadPdf({ xfdfString: xfdfString, }); console.log('Downloaded a third time!') }); });
-
enableClearSearchOnPanelClose()
-
Enable clearing search results when user closes search panel. When this is enabled and user closes search panel all search results are cleared. Note, mobile devices never clear search results even if this setting is enabled. This is because the panel needs to be closed to view the search results on the document.
Example
WebViewer(...) .then(function(instance) { // Will not affect on mobile devices instance.enableClearSearchOnPanelClose(); });
-
enableElements(dataElements)
-
Remount the hidden elements in the DOM.
Parameters:
Name Type Description dataElements
Array.<string> Array of data-element attribute values for DOM elements. To find data-element of a DOM element, refer to Finding data-element attribute values. Example
WebViewer(...) .then(function(instance) { // remove left panel and left panel button from the DOM instance.enableElements([ 'leftPanel', 'leftPanelButton' ]); });
-
enableFeatures(features)
-
Enable certain features in the WebViewer UI.
Parameters:
Name Type Description features
Array.<string> Array of features to enable. Example
WebViewer(...) .then(function(instance) { instance.enableFeatures(instance.Feature.Measurement); });
-
enableTools( [toolNames])
-
Enable multiple tools.
Parameters:
Name Type Argument Default Description toolNames
Array.<string> <optional>
all tools Array of name of the tools, either from tool names list or the name you registered your custom tool with. If nothing is passed, all tools will be enabled. Example
WebViewer(...) .then(function(instance) { // enable sticky annotation tool and free text tool instance.enableTools([ 'AnnotationCreateSticky', 'AnnotationCreateFreeText' ]); });
-
exportBookmarks()
-
Returns a dictionary with page indices as keys and the bookmark text as the values
Returns:
A dictionary with page indices as keys and the bookmark text as the values. ex: {"0":"Bookmark 1","2":"Bookmark 2"}- Type
- Object
Example
WebViewer(...) .then(function(instance) { // Save the annotation data for doc123 const bookmarks = instance.exportBookmarks(); const bookmarksString = JSON.stringify(bookmarks); fetch('/server/bookmarksHandler.js?documentId=doc123', { method: 'POST', body: bookmarksString // written into a json file on server }); });
-
extractPagesWithAnnotations(pageNumbersToExtract)
-
Extract pages from the current document
Parameters:
Name Type Description pageNumbersToExtract
Array.<number> An array of pages to extract from the document. Annotations on the pages are included Returns:
A promise that resolve to a File object- Type
- Promise.<File>
Example
// 6.0 and after WebViewer(...) .then(function(instance) { instance.extractPagesWithAnnotations ([1,2,3]).then(function(fileData){ }); });
-
focusNote(annotationId)
-
Focuses a note input field for the annotation. If the notes panel is closed, it is automatically opened before focusing.
Parameters:
Name Type Description annotationId
string Id of an annotation. Example
WebViewer(...) .then(function(instance) { var annotManager = instance.annotManager; annotManager.on('annotationChanged', function(annotations, action) { annotations.forEach(function(annotation) { // Focus the note when annotation is created if (action === 'add' && annotation.Listable) { instance.focusNote(annotation.Id); // note it is a capital i } }); }); });
-
getAnnotationReadState(annotationId)
-
Return the read/unread state of an annotation. True for read, false for unread.
Parameters:
Name Type Description annotationId
string Id of the annotation. Throws:
Will throw an error if the annotation with the given ID does not exist.Returns:
Whether the annotation is read.- Type
- boolean
Example
WebViewer(...) .then(function(instance) { const isAnnotationRead = instance.getAnnotationReadState('test-annotation-id');
-
getCustomData()
-
A getter that returns a stringified version of the 'custom' property that is passed to the WebViewer constructor Refer to the passing custom data section.
Returns:
returns a stringified version of the 'custom' property that is passed to the WebViewer constructor- Type
- string
-
getFitMode()
-
Return the current fit mode of the WebViewerInstance.
Returns:
Current fit mode- Type
- string
Example
WebViewer(...) .then(function(instance) { var docViewer = instance.docViewer; // you must have a document loaded when calling this api docViewer.on('documentLoaded', function() { console.log(instance.getFitMode()); }); });
-
getLayoutMode()
-
Return the current layout mode of the WebViewerInstance.
Returns:
Current layout mode- Type
- string
Example
WebViewer(...) .then(function(instance) { var docViewer = instance.docViewer; // you must have a document loaded when calling this api docViewer.on('documentLoaded', function() { console.log(instance.getLayoutMode()); }); });
-
getMaxZoomLevel()
-
Return the max zoom level
Returns:
max zoom level- Type
- number
Example
WebViewer(...) .then(function(instance) { var docViewer = instance.docViewer; // you must have a document loaded when calling this api docViewer.on('documentLoaded', function() { console.log(instance.getMaxZoomLevel()); }); });
-
getMinZoomLevel()
-
Return the min zoom level
Returns:
min zoom level- Type
- number
Example
WebViewer(...) .then(function(instance) { var docViewer = instance.docViewer; // you must have a document loaded when calling this api docViewer.on('documentLoaded', function() { console.log(instance.getMinZoomLevel()); }); });
-
getSelectedThumbnailPageNumbers()
-
Get the currently selected pages
Returns:
an array of select page numbers- Type
- Array.<number>
Example
// 6.0 and after WebViewer(...) .then(function(instance) { instance.getSelectedThumbnailPageNumbers(); });
-
getToolMode()
-
Return the current tool object.
Returns:
Instance of the current tool- Type
- Tools.Tool
Example
WebViewer(...) .then(function(instance) { console.log(instance.getToolMode().name, instance.getToolMode()); });
-
getZoomLevel()
-
Return the current zoom level
Returns:
Zoom level (0 ~ 1)- Type
- number
Example
WebViewer(...) .then(function(instance) { var docViewer = instance.docViewer; // you must have a document loaded when calling this api docViewer.on('documentLoaded', function() { console.log(instance.getZoomLevel()); }); });
-
hideOutlineControl()
-
hide outline control
Example
WebViewer(...) .then(function(instance) { instance.hideOutlineControl(); });
-
importBookmarks(bookmarks)
-
Imports user bookmarks
Parameters:
Name Type Description bookmarks
object A dictionary with page indices as keys and the bookmark text as the values. ex: {"0":"Bookmark 1","2":"Bookmark 2"}. Behaviour is undefined otherwise. Example
WebViewer(...) .then(function(instance) { // load the user bookmarks data for id 'doc123' fetch('/server/bookmarksHandler.js?documentId=doc123', { method: 'GET' }).then(function(response) { if (response.status === 200) { response.text().then(function(bookmarksString) { // {"0":"Bookmark 1","2":"Bookmark 2"} const bookmarks = JSON.parse(bookmarksString); instance.importBookmarks(bookmarks); }); } }); });
-
isElementDisabled(dataElement)
-
Returns whether the element is disabled.
Parameters:
Name Type Description dataElement
string data-element attribute value for a DOM element. To find data-element of a DOM element, refer to Finding data-element attribute values. Returns:
Whether the element is disabled.- Type
- boolean
Example
WebViewer(...) .then(function(instance) { console.log(instance.isElementDisabled('leftPanel')); });
-
isElementOpen(dataElement)
-
Returns whether the element is open.
Parameters:
Name Type Description dataElement
string data-element attribute value for a DOM element. To find data-element of a DOM element, refer to Finding data-element attribute values. Returns:
Whether the element is open.- Type
- boolean
Example
WebViewer(...) .then(function(instance) { console.log(instance.isElementOpen('leftPanel')); });
-
isToolDisabled(toolName)
-
Returns whether the tool is disabled.
Parameters:
Name Type Description toolName
string Name of the tool, either from tool names list or the name you registered your custom tool with. Returns:
Whether the tool is disabled.- Type
- boolean
Example
WebViewer(...) .then(function(instance) { console.log(instance.isToolDisabled()); });
-
loadDocument(documentPath [, options])
-
Load a document inside WebViewer UI.
Parameters:
Name Type Argument Description documentPath
string | File | Blob | CoreControls.Document | PDFNet.PDFDoc Path to the document OR File object if opening local file. options
object <optional>
Additional options Properties
Name Type Argument Description extension
string <optional>
The extension of the file. If file is a blob/file object or a URL without an extension then this is necessary so that WebViewer knows what type of file to load. filename
string <optional>
Filename of the document, which is used when downloading the PDF. customHeaders
object <optional>
An object of custom HTTP headers to use when retrieving the document from the specified url. webViewerServerCustomQueryParameters
object <optional>
An object of custom query parameters to be appended to every WebViewer Server request. documentId
string <optional>
Unique id of the document. withCredentials
boolean <optional>
Whether or not cross-site requests should be made using credentials. cacheKey
string <optional>
A key that will be used for caching the document on WebViewer Server. password
string <optional>
A string that will be used to as the password to load a password protected document. xodOptions
object <optional>
An object that contains the options for a XOD document. Properties
Name Type Argument Description decrypt
boolean <optional>
Function to be called to decrypt a part of the XOD file. For default XOD AES encryption pass CoreControls.Encryption.decrypt. decryptOptions
boolean <optional>
An object with options for the decryption e.g. {p: "pass", type: "aes"} where is p is the password. streaming
boolean <optional>
A boolean indicating whether to use http or streaming PartRetriever, it is recommended to keep streaming false for better performance. https://www.pdftron.com/documentation/web/guides/streaming-option. azureWorkaround
boolean <optional>
Whether or not to workaround the issue of Azure not accepting range requests of a certain type. Enabling the workaround will add an extra HTTP request of overhead but will still allow documents to be loaded from other locations. startOffline
boolean <optional>
Whether to start loading the document in offline mode or not. This can be set to true if the document had previously been saved to an offline database using WebViewer APIs. You'll need to use this option to load from a completely offline state. Example
WebViewer(...) .then(function(instance) { instance.loadDocument('https://www.pdftron.com/downloads/pl/test.pdf', { documentId: '1', filename: 'sample-1.pdf' }); });
-
openElements(dataElements)
-
Sets visibility states of the elements to be visible. Note that openElements works only for panel/overlay/popup/modal elements.
Parameters:
Name Type Description dataElements
Array.<string> Array of data-element attribute values for DOM elements. To find data-element of a DOM element, refer to Finding data-element attribute values. Example
WebViewer(...) .then(function(instance) { // opens (shows) text popup and annotation popup in the UI instance.openElements([ 'menuOverlay', 'leftPanel' ]); });
-
overrideSearchExecution(overrideSearchExecutionCallback)
-
Add custom override function for default search on UI. overrideSearchExecutionCallback function will be executed with search value and search options when user executes search from UI. This function won't be executed when search is triggered through programmatic searches.
Parameters:
Name Type Description overrideSearchExecutionCallback
function Function that will executed instead of default search functionality. Example
WebViewer(...) .then(function(instance) { function searchFn(searchValue, options) { console.log(searchValue, options); }; instance.overrideSearchExecution(searchFn); });
-
print()
-
Print the current document.
Example
WebViewer(...) .then(function(instance) { var docViewer = instance.docViewer; // you must have a document loaded when calling this api docViewer.on('documentLoaded', function() { instance.print(); }); });
-
printInBackground( [options])
-
Programmatically print the document without opening a modal with the print options provided. Not supported by legacy-ui
Parameters:
Name Type Argument Description options
object <optional>
Options for the printing. Properties
Name Type Argument Default Description pagesToPrint
Array.<number> <optional>
Optionally pass in the pages you want to print. By default, all pages will be printed. includeAnnotations
boolean <optional>
false If true, will print the documents with the annotations includeComments
boolean <optional>
false If true, will append comments to the document printed isPrintCurrentView
boolean <optional>
If true, will print the current viewport view of the current page onProgress
function <optional>
A callback function that is executed on each page processed Example
WebViewer(...) .then(function(instance) { var docViewer = instance.docViewer; // you must have a document loaded when calling this api docViewer.on('documentLoaded', function() { instance.printInBackground({ includeComments:true, includeAnnotations: true, onProgress: function(pageNumber, htmlElement) {}, }); }); });
-
registerTool(properties [, annotationConstructor] [, customAnnotationCheckFunc])
-
Registers tool in the document viewer tool mode map, and adds a button object to be used in the header. See Customizing tools to learn how to make a tool.
Parameters:
Name Type Argument Description properties
object Tool properties. Properties
Name Type Argument Description toolName
string Name of the tool. toolObject
Tools.Tool Instance of the tool. buttonImage
string Path to an image or base64 data for the tool button. buttonName
string <optional>
Name of the tool button that will be used in data-element. buttonGroup
string <optional>
Group of the tool button belongs to. tooltip
string <optional>
Tooltip of the tool button. showColor
'always' | 'active' | 'never' <optional>
Controls when the tool button should show the color. annotationConstructor
function <optional>
Deprecated Please use customAnnotationCheckFunc instead. Will be removed in the future. customAnnotationCheckFunc
function <optional>
Function that takes in a parameter of an annotation. Returns a boolean if the specified annotation is a certain type of annotation. This function is used by the viewer to check if the annotation passed in is associated(created) with the registered tool. Example
WebViewer(...) .then(function(instance) { // assume myCustomTool and myCustomAnnotation are already defined var myTool = { toolName: 'MyTool', toolObject: myCustomTool, buttonImage: 'path/to/image', buttonName: 'myToolButton', buttonGroup: 'miscTools', tooltip: 'MyTooltip' }; instance.registerTool(myTool, undefined, annot => annot && annot.isCustomAnnot); });
-
removeSearchListener(listener)
-
Removes the search listener function.
Parameters:
Name Type Description listener
WebViewerInstance.searchListener Search listener function that was added. Example
WebViewer(...) .then(function(instance) { function searchListener(searchValue, options, results) { console.log(searchValue, options, results); }; instance.addSearchListener(searchListener); instance.removeSearchListener(searchListener); });
-
searchText(searchValue [, options])
-
Searches the document one by one for the text matching searchValue. To go to the next result this function must be called again. Once document end is reach it will jump back to the first found result.
Parameters:
Name Type Argument Description searchValue
string The text value to look for. options
object <optional>
Search options. Properties
Name Type Argument Default Description caseSensitive
boolean <optional>
false Search with matching cases. wholeWord
boolean <optional>
false Search whole words only. wildcard
boolean <optional>
false Search a string with a wildcard *. For example, *viewer. regex
boolean <optional>
false Search for a regex string. For example, www(.*)com. searchUp
boolean <optional>
false Search up the document (backwards). ambientString
boolean <optional>
false Get the ambient string in the result. Example
WebViewer(...) .then(function(instance) { var docViewer = instance.docViewer; // you must have a document loaded when calling this api docViewer.on('documentLoaded', function() { instance.searchText('test', { caseSensitive: true, wholeWord: true }); }); });
-
searchTextFull(searchValue [, options])
-
Searches the full document for the texts matching searchValue.
Parameters:
Name Type Argument Description searchValue
string The text value to look for. options
object <optional>
Search options. Properties
Name Type Argument Default Description caseSensitive
boolean <optional>
false Search with matching cases. wholeWord
boolean <optional>
false Search whole words only. wildcard
boolean <optional>
false Search a string with a wildcard *. For example, *viewer. regex
boolean <optional>
false Search for a regex string. For example, www(.*)com. Example
WebViewer(...) .then(function(instance) { var docViewer = instance.docViewer; // you must have a document loaded when calling this api docViewer.on('documentLoaded', function() { instance.searchTextFull('test', { wholeWord: true }); }); });
-
selectThumbnailPages(pageNumbers)
-
Select thumbnails in the thumbnail panel. This requires the "ThumbnailMultiselect" feature to be enabled
Parameters:
Name Type Description pageNumbers
Array.<number> array of page numbers to select Example
// 6.1 and after WebViewer(...) .then(function(instance) { instance.enableFeatures(['ThumbnailMultiselect']); const pageNumbersToSelect = [1, 2, 3]; instance.selectThumbnailPages(pageNumbersToSelect); });
-
setActiveHeaderGroup(headerGroup)
-
Sets a header group to be rendered in the Header element. This API comes useful when replacing the entire header items in small screens.
Parameters:
Name Type Description headerGroup
string Name of the header group to be rendered. Default WebViewer UI has eight header groups: 'default', 'small-mobile-more-buttons', 'toolbarGroup-View', 'toolbarGroup-Annotate', 'toolbarGroup-Shapes', 'toolbarGroup-Insert', 'toolbarGroup-Measure', and 'toolbarGroup-Edit'. Example
WebViewer(...) .then(function(instance) { instance.setActiveHeaderGroup('toolbarGroup-Annotate'); // switch to 'Annotate' group header });
-
setActiveLeftPanel(dataElement)
-
Sets a panel to be active in the leftPanel element. Note that this API does not include opening the leftPanel.
Parameters:
Name Type Description dataElement
string Name of the panel to be active in leftPanel. Default WebViewer UI has three panel options: thumbnailsPanel, outlinesPanel and notesPanel. Example
WebViewer(...) .then(function(instance) { // open left panel instance.openElements([ 'leftPanel' ]); // view outlines panel instance.setActiveLeftPanel('outlinesPanel');
-
setActivePalette(toolName, colorPalette)
-
Sets the active color palette of a tool and its associated annotation
Parameters:
Name Type Description toolName
string Name of the tool, either from tool names list or the name you registered your custom tool with. colorPalette
'text' | 'border' | 'fill' The palette to be activated. One of 'text', 'border' and 'fill'. Example
WebViewer(...) .then(function(instance) { instance.setActivePalette('AnnotationCreateFreeText', 'fill') });
-
setAnnotationContentOverlayHandler(customOverlayHandler)
-
Adds a custom overlay to annotations on mouseHover, overriding the existing overlay.
Parameters:
Name Type Description customOverlayHandler
function A function that takes an annotation and returns a DOM Element, which is rendered as a tooltip when hovering over the annotation. Returning null or false will render nothing. Returning 'undefined' will use default behavior. Example
WebViewer(...) .then(function(instance) { instance.setAnnotationContentOverlayHandler(annotation => { const div = document.createElement('div'); div.appendChild(document.createTextNode(`Created by: ${annotation.Author}`)); div.appendChild(document.createElement('br')); div.appendChild(document.createTextNode(`Created on ${annotation.DateCreated}`)); return div; }); });
-
setAnnotationReadState(options)
-
Set the read/unread state of an annotation. The default state of annotations is read.
Parameters:
Name Type Description options
object Properties
Name Type Description isRead
boolean whether setting the annotation to read state; false for setting it as unread. annotationId
string Id of the annotation to be set. Example
WebViewer(...) .then(function(instance) { instance.setAnnotationReadState({ isRead: true, annotationId: 'test-annotation-id' }); });
-
setColorPalette(An)
-
Sets the colors in the palette globally or for specific tools and their associated annotations
Parameters:
Name Type Description An
Array.<string> | WebViewerInstance.PaletteOption array of hex colors that will override the default colors for every tool. An object can be passed to specify colors for particular tools. Example
WebViewer(...) .then(function(instance) { // this sets the palette globally. All the tools will use these colors. Can use empty string for blank spaces and 'transparency' for a transparent color. instance.setColorPalette(['#FFFFFF', '', '#DDDDDD', 'transparency']); // use a different set of colors for the freetext and rectangle tool. instance.setColorPalette({ toolNames: ['AnnotationCreateFreeText', 'AnnotationCreateRectangle'], colors: ['#333333'], }) });
-
setCustomMeasurementOverlay(customOverlayInfo)
-
Adds a custom overlay to annotations if that annotation currently support it. Currently only the Ellipsis annotation supports it.
Parameters:
Name Type Description customOverlayInfo
array an array of customOverlay configurations. The configuration object has five properties: title, label, validate, value, and onChange Example
WebViewer(...) .then(function(instance) { instance.setCustomMeasurementOverlayInfo([ { title: "Radius Measurement", //Title for overlay label: "Radius", // Label to be shown for the value // Validate is a function to validate the annotation is valid for the current custom overlay validate: annotation => annotation instanceof instance.Annotations.EllipseAnnotation, // The value to be shown in the custom overlay value: annotation => annotation.Width / 2, // onChange will be called whenever the value in the overlay changes from user input onChange: (e, annotation) => { // Do something with the annot like resize/redraw instance.annotManager.redrawAnnotation(annotation); } } ]) });
-
setCustomModal(options)
-
Add custom modal element to WebViewer.
Controlling custom modals is done using element API for example openElements, closeElements, toggleElement, and disableElements. dateElement string passed on these function should be same as you set in options.dataElement.
Every custom modal will add new <div> element with CustomModal and <options.dataElement string> set as class attribute Modal with identical options.dataElement will get replaced by the latest modal options.
For styling these components, see Customizing WebViewer UI Styles
Note that in most cases WebViewer is ran in iframe and making options.disableEscapeKeyDown automatically work, iframe must be the active element. This can be done by setting focus to iframe programmatically.Parameters:
Name Type Description options
object Properties
Name Type Argument Default Description dataElement
string Unique name of custom modal. disableBackdropClick
boolean <optional>
false Disable closing modal when user clicks outside of content area disableEscapeKeyDown
boolean <optional>
false Disable closing modal when user hit escape from keyboard render
WebViewerInstance.renderCustomModal Function rendering custom model contents Example
WebWiewer(...).then(function(instance) { var modal = { dataElement: 'meanwhileInFinlandModal', render: function renderCustomModal(){ var div = document.createElement("div"); div.style.color = 'white'; div.style.backgroundColor = 'hotpink'; div.style.padding = '20px 40px'; div.style.borderRadius = '5px'; div.innerText = 'Meanwhile in Finland'; return div } } instance.setCustomModal(modal); instance.openElements([modal.dataElement]); });
-
setCustomNoteFilter(filterAnnotation)
-
Filter the annotations shown in the notes panel
Parameters:
Name Type Description filterAnnotation
WebViewerInstance.filterAnnotation Function that takes an annotation and returns if the annotation(note) should be shown in the notes panel. Example
WebViewer(...) .then(function(instance) { // only show annotations that are created by John instance.setCustomNoteFilter(function(annotation) { return annotation.Author === 'John'; }); });
-
setCustomNoteSelectionFunction(customNoteSelectionFunction)
-
Parameters:
Name Type Description customNoteSelectionFunction
WebViewerInstance.CustomNoteSelectionFunction The function that will be invoked when clicking on a note in notes panel. The function will only be invoked when the underlying annotation is not already selected. Example
WebViewer(...) .then(function(instance) { instance.setCustomNoteSelectionFunction(annotation => { // some code }) });
-
setCustomPanel(options)
-
Adds a custom panel in left panel
Parameters:
Name Type Description options
object Properties
Name Type Description tab
object Tab options. Properties
Name Type Description dataElement
string data-element for tab. title
string Tooltip for tab. img
string Url for an image. panel
object Panel options. Properties
Name Type Description dataElement
string data-element for panel. render
WebViewerInstance.renderCustomPanel Function that returns panel element. Example
WebViewer(...) .then(function(instance) { var myCustomPanel = { tab:{ dataElement: 'customPanelTab', title: 'customPanelTab', img: 'https://www.pdftron.com/favicon-32x32.png', }, panel: { dataElement: 'customPanel', render: function() { var div = document.createElement('div'); div.innerHTML = 'Hello World'; return div; } } }; instance.setCustomPanel(myCustomPanel); });
-
setDisplayedSignaturesFilter(filterFunction)
-
Accepts a function that filters what saved signatures will be displayed in the signature annotation preset. Changing this function will instantly changes signatures displayed in the preset.
Parameters:
Name Type Description filterFunction
WebViewerInstance.SignatureFilterFunction The function that will be used to filter signatrues displayed in the preset Example
Webviewer(...) .then(instance => { // Only signatures that have a value set for the 'isInitial' custom data property will display in the preset instance.setDisplayedSignaturesFilter((a) => a.getCustomData('isInitial')); });
-
setFitMode(fitMode)
-
Sets the fit mode of the viewer.
Parameters:
Name Type Description fitMode
string Fit mode of WebViewer. Example
WebViewer(...) .then(function(instance) { var docViewer = instance.docViewer; var FitMode = instance.FitMode; // you must have a document loaded when calling this api docViewer.on('documentLoaded', function() { instance.setFitMode(FitMode.FitWidth); }); });
-
setHeaderItems(headerCallback)
-
Customize header. Refer to Customizing header for details.
Parameters:
Name Type Description headerCallback
WebViewerInstance.headerCallback Callback function to perform different operations on the header. Examples
// Adding save annotations button to the end of the top header WebViewer(...) .then(function(instance) { instance.setHeaderItems(function(header) { var myCustomButton = { type: 'actionButton', img: '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm-5 16c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-10H5V5h10v4z"/></svg>', onClick: function() { instance.saveAnnotations(); } } header.push(myCustomButton); }); });
// Removing existing buttons from the top header WebViewer(...) .then(function(instance) { instance.setHeaderItems(function(header) { header.update([]); }); });
// Appending logo to the 'Annotate' toolbar group and shifting existing buttons to the right WebViewer(...) .then(function(instance) { instance.setHeaderItems(function(header) { header.getHeader('toolbarGroup-Annotate').unshift({ type: 'customElement', render: function() { var logo = document.createElement('img'); logo.src = 'https://www.pdftron.com/downloads/logo.svg'; logo.style.width = '200px'; logo.style.marginLeft = '10px'; logo.style.cursor = 'pointer'; logo.onclick = function() { window.open('https://www.pdftron.com', '_blank'); } return logo; } }, { type: 'spacer' }); }); });
// Moving the line tool from the 'Shapes' toolbar group to the 'Annotate' toolbar group WebViewer(...) .then(function(instance) { instance.setHeaderItems(function(header) { header.getHeader('toolbarGroup-Annotate').push({ type: 'toolGroupButton', toolGroup: 'lineTools', dataElement: 'lineToolGroupButton', title: 'annotation.line' }); header.getHeader('toolbarGroup-Shapes').delete(6); }); });
-
setHighContrastMode(useHighContrastMode)
-
Turns high contrast mode on or off to help with accessibility.
Parameters:
Name Type Description useHighContrastMode
boolean If true then the UI will use high contrast colors to help with accessibility. Example
// Using predefined string WebViewer(...) .then(function(instance) { instance.setHighContrastMode(true); });
-
setIconColor(toolName, colorPalette)
-
Sets the color palette that will be used as a tool button's icon color.
Parameters:
Name Type Description toolName
string Name of the tool, either from tool names list or the name you registered your custom tool with. colorPalette
string The palette which will be used as a tool button's icon color. One of 'text', 'border' and 'fill'. Example
WebViewer(...) .then(function(instance) { // sets the color in fill palette to be used as freetext tool button's icon color // by default freetext tool button will use the color in text palette as its icon color instance.setIconColor('AnnotationCreateFreeText', 'fill') });
-
setLanguage(language)
-
Set the language of WebViewer UI.
Parameters:
Name Type Description language
string The language WebViewer UI will use. By default, following languages are supported: en, zh_cn, fr. Example
WebViewer(...) .then(function(instance) { instance.setLanguage('fr'); // set the language to French });
-
setLayoutMode(layoutMode)
-
Sets the layout mode of the viewer.
Parameters:
Name Type Description layoutMode
string Layout mode of WebViewerInstance. Example
WebViewer(...) .then(function(instance) { var docViewer = instance.docViewer; var LayoutMode = instance.LayoutMode; // you must have a document loaded when calling this api docViewer.on('documentLoaded', function() { instance.setLayoutMode(LayoutMode.FacingContinuous); }); });
-
setMaxSignaturesCount( [maxSignaturesCount])
-
Set the number of signatures that can be stored in the WebViewer (default is 2)
Parameters:
Name Type Argument Default Description maxSignaturesCount
number <optional>
2 Number of signature webViewer can store Example
WebViewer(...) .then(function(instance) { instance.setMaxSignaturesCount(5); // allow up to 5 stored signatures });
-
setMaxZoomLevel(zoomLevel)
-
Sets the maximum zoom level allowed by the UI. Default is 9999%.
Parameters:
Name Type Description zoomLevel
string | number Zoom level in either number or percentage. Example
WebViewer(...) .then(function(instance) { instance.setMaxZoomLevel('150%'); // or setMaxZoomLevel(1.5) });
-
setMeasurementUnits(units)
-
Sets the units that will be displayed in the measurement tools' styles popup Valid units are: 'mm', 'cm', 'm', 'km', 'mi', 'yd', 'ft', 'in', 'pt'
Parameters:
Name Type Description units
Object an object which contains the from units and to units Example
WebViewer(...) .then(function(instance) { instance.setMeasurementUnits({ from: ['in', 'cm', 'm'], to: ['cm', 'm', 'km'] }); });
-
setMinZoomLevel(zoomLevel)
-
Sets the minimum zoom level allowed by the UI. Default is 5%.
Parameters:
Name Type Description zoomLevel
string | number Zoom level in either number or percentage. Example
WebViewer(...) .then(function(instance) { instance.setMinZoomLevel('10%'); // or setMinZoomLevel(0.1) });
-
setNoteDateFormat(format)
-
Sets the format for displaying the date when a note is create/modified. A list of formats can be found dayjs API.
Parameters:
Name Type Description format
string The format of date to display Example
WebViewer(...) .then(function(instance) { instance.setNoteDateFormat('DD.MM.YYYY HH:MM'); });
-
setPageLabels(pageLabels)
-
Sets page labels that will be displayed in UI. You may want to use this API if the document's page labels start with characters/numbers other than 1.
Parameters:
Name Type Description pageLabels
Array.<string> Page labels that will be displayed in UI. Example
WebViewer(...) .then(function(instance) { var docViewer = instance.docViewer; // you must have a document loaded when calling this api docViewer.on('documentLoaded', function() { instance.setPageLabels(['i', 'ii', 'iii', '4', '5']); // assume a document has 5 pages }); });
-
setPrintedNoteDateFormat(format)
-
Sets the format for displaying the date when a note is printed. A list of formats can be found dayjs API.
Parameters:
Name Type Description format
string The format of date to display Example
WebViewer(...) .then(function(instance) { instance.setPrintedNoteDateFormat('DD.MM.YYYY HH:MM'); });
-
setPrintQuality(quality)
-
Sets the print quality. Higher values are higher quality but takes longer to complete and use more memory. The viewer's default quality is 1.
Parameters:
Name Type Description quality
number The quality of the document to print. Must be a positive number. Example
WebViewer(...) .then(function(instance) { instance.setPrintQuality(2); });
-
setSignatureFonts(fonts)
-
Set the fonts that are used when typing a signature in the signature dialog.
Parameters:
Name Type Description fonts
Array.<string> | WebViewerInstance.setSignatureFontsCallback An array of font families. Example
// 6.1 WebViewer(...) .then(function(instance) { instance.setSignatureFonts(['GreatVibes-Regular']); instance.setSignatureFonts(currentFonts => [ ...currentFonts, 'sans-serif', ]); });
-
setSortStrategy(sortStrategy)
-
Sets a sorting algorithm in NotesPanel.
Parameters:
Name Type Description sortStrategy
string Name of the algorithm. By default, there are two algorithm options: position and time. Example
WebViewer(...) .then(function(instance) { instance.setSortStrategy('time'); // sort notes by time });
-
setSwipeOrientation(swipeOrientation)
-
Sets the swipe orientation between pages of WebViewer UI on mobile devices. Default is horizontal.
Parameters:
Name Type Description swipeOrientation
string The swipe orientation to navigate between pages. Available orientations are: horizontal, vertical and both. Example
WebViewer(...) .then(function(instance) { instance.setSwipeOrientation('vertical'); // set the swipe orientation to vertical. });
-
setTheme(theme)
-
Sets the theme of WebViewer UI. Please note that this does not work in IE11.
Parameters:
Name Type Description theme
string Either the string 'light' or 'dark'. Example
// Using predefined string WebViewer(...) .then(function(instance) { instance.setTheme('dark'); });
-
setToolbarGroup(groupDataElement, pickTool)
-
Sets the current active toolbar group.
Parameters:
Name Type Description groupDataElement
string The groups dataElement. Default values are: toolbarGroup-View, toolbarGroup-Annotate, toolbarGroup-Shapes, toolbarGroup-Insert, toolbarGroup-Measure, toolbarGroup-Edit pickTool
boolean If true, after setting the toolbar group, the last picked tool for the group will be set as the current tool. Defaults to true. Example
WebViewer(...) .then(function(instance) { // Change the toolbar group to the `Shapes` group instance.setToolbarGroup('toolbarGroup-Shapes');
-
setToolMode(toolName)
-
Sets tool mode.
Parameters:
Name Type Description toolName
string | Tools.ToolNames Name of the tool, either from tool names list or the name you registered your custom tool with. Example
WebViewer(...) .then(function(instance) { instance.setToolMode('AnnotationEdit'); });
-
setZoomLevel(zoomLevel)
-
Sets zoom level.
Parameters:
Name Type Description zoomLevel
string | number Zoom level in either number or percentage. Example
WebViewer(...) .then(function(instance) { var docViewer = instance.docViewer; // you must have a document loaded when calling this api docViewer.on('documentLoaded', function() { instance.setZoomLevel('150%'); // or setZoomLevel(1.5) }); });
-
showErrorMessage(message)
-
Displays the custom error message
Parameters:
Name Type Description message
string An error message Example
WebViewer(...) .then(function(instance) { instance.showErrorMessage('My error message'); });
-
showOutlineControl()
-
Show outline control
Example
WebViewer(...) .then(function(instance) { instance.showOutlineControl(); });
-
toggleElement(dataElement)
-
Toggles a visibility state of the element to be visible/hidden. Note that toggleElement works only for panel/overlay/popup/modal elements.
Parameters:
Name Type Description dataElement
string data-element attribute value for a DOM element. To find data-element of a DOM element, refer to Finding data-element attribute values. Example
WebViewer(...) .then(function(instance) { instance.toggleElement('leftPanel'); // open LeftPanel if it is closed, or vice versa });
-
toggleFullScreen()
-
Toggles full scree mode of the browser.
Example
WebViewer(...) .then(function(instance) { instance.toggleFullScreen(); });
-
toggleReaderMode()
-
Toggles Reader mode of the viewer. Note that Reader mode only works with fullAPI enabled.
Example
WebViewer(...) .then(function(instance) { instance.toggleReaderMode(); });
-
unregisterTool(toolName)
-
Unregisters tool in the document viewer tool mode map, and removes the button object.
Parameters:
Name Type Description toolName
string Name of the tool, either from tool names list or the name you registered your custom tool with. Example
WebViewer(...) .then(function(instance) { instance.unregisterTool('MyTool'); });
-
unselectThumbnailPages(pageNumbers)
-
Unselect selected thumbnails
Parameters:
Name Type Description pageNumbers
Array.<number> array of page numbers to unselect Example
// 6.1 and after WebViewer(...) .then(function(instance) { const pageNumbersToUnselect = [1, 2]; instance.unselectThumbnailPages(pageNumbersToUnselect); });
-
updateElement(dataElement, props)
-
Update an element in the viewer.
Parameters:
Name Type Description dataElement
string the data element of the element that will be updated. Only the data element of HTML elements that have 'Button' in the class name will work. props
* An object that is used to override an existing item's properties. Example
WebViewer(...) .then(function(instance) { instance.updateElement('thumbnailsPanelButton', { img: 'path/to/image', title: 'new_tooltip', }) });
-
updateTool(toolName [, properties])
-
Update existing tool's properties.
Parameters:
Name Type Argument Description toolName
string Name of the tool, either from tool names list or the name you registered your custom tool with. properties
object <optional>
Tool properties Properties
Name Type Argument Description buttonImage
string <optional>
Path to an image or base64 data for the tool button buttonName
string <optional>
Name of the tool button that will be used in data-element buttonGroup
string <optional>
Group of the tool button belongs to tooltip
string <optional>
Tooltip of the tool button Example
WebViewer(...) .then(function(instance) { instance.updateTool('AnnotationCreateSticky', { buttonImage: 'https://www.pdftron.com/favicon-32x32.png' }); });
-
useEmbeddedPrint( [use])
-
Use/not use embedded printing. Only applicable to Chrome. The printing process will be faster and the quality might be higher when using Chrome's native printing. You may not want to use embedded printing if there are custom annotations in your document.
Parameters:
Name Type Argument Default Description use
boolean <optional>
true Whether or not to use embedded printing Example
WebViewer(...) .then(function(instance) { instance.useEmbeddedPrint(false); // disable embedded printing });
Type Definitions
-
CustomNoteSelectionFunction(annotation)
-
Parameters:
Name Type Description annotation
Annotations.Annotation A reference to the annotation object associated with the note -
filterAnnotation(annotation)
-
Callback that gets passed to setCustomNoteFilter.
Parameters:
Name Type Description annotation
Annotations.Annotation Annotation object Returns:
Whether the annotation should be kept.- Type
- boolean
-
getSeparatorContent(prevNote, currNote, options)
-
Callback that gets passed to `sortStrategy.getSeparatorContent` in addSortStrategy.
Parameters:
Name Type Description prevNote
Annotations.Annotation Previous note (annotation) currNote
Annotations.Annotation Current note (annotation) options
object Optional values Properties
Name Type Description pageLabels
Array.<string> List of page label Returns:
Content to be rendered in a separator- Type
- string | number
-
getSortedNotes(notes)
-
Callback that gets passed to `sortStrategy.getSortedNotes` in addSortStrategy.
Parameters:
Name Type Description notes
Array.<Annotations.Annotation> List of unsorted notes (annotations) Returns:
Sorted notes (annotations)- Type
- Array.<Annotations.Annotation>
-
headerCallback(header)
-
Callback that gets passed to setHeaderItems.
Parameters:
Name Type Description header
Header Header instance with helper functions -
NoteTransformFunction(wrapperElement, state, createElement)
-
Parameters:
Name Type Description wrapperElement
HTMLElement A reference to the DOM node that wraps the note. You can use this to query select child elements to mutate (see the examples below) state
object The state of the note. Contains two properties, 'annotation' and 'isSelected' Properties
Name Type Description annotation
Annotations.Annotation A reference to the annotation object associated with the note isSelected
boolean whether or not the note is currently expanded createElement
function A utility function that should be used when creating DOM nodes. This is a replacement for `document.createElement`. Accepts the same parameters as `document.createElement`. Using document.createElement instead of this function will cause your DOM nodes to not be cleaned up on subsequent renders. -
PaletteOption
-
Properties:
Name Type Description toolNames
Array.<string> Tools that will have the same colors in the palette. colors
Array.<string> An array of hex colors. Use 'transparency' for a transparent color. -
renderCustomModal()
-
Callback that gets passed to `options.render` in setCustomModal.
Returns:
Modal element. If string is returned, it will be displayed as is inside modal- Type
- HTMLElement | string
-
renderCustomPanel()
-
Callback that gets passed to `options.panel.render` in setCustomPanel.
Returns:
Panel element.- Type
- HTMLElement
-
searchListener(searchValue, options, results)
-
Callback that gets passed to addSearchListener.
Parameters:
Name Type Description searchValue
string Search value options
object Search options object, which includes 'caseSensitive', 'wholeWord', 'wildcard' and 'regex' results
Array.<object> Search results -
setSignatureFontsCallback(fonts)
-
Parameters:
Name Type Description fonts
Array.<string> current font families Returns:
fonts to set.- Type
- Array.<string>
-
shouldRenderSeparator(prevNote, currNote)
-
Callback that gets passed to `sortStrategy.shouldRenderSeparator` in addSortStrategy.
Parameters:
Name Type Description prevNote
Annotations.Annotation Previous note (annotation) currNote
Annotations.Annotation Current note (annotation) Returns:
Whether a separator should be rendered or not- Type
- boolean
-
SignatureFilterFunction(annotation, index)
-
Parameters:
Name Type Description annotation
Annotations.Annotation A signature annotation found in the SignatureCreateTool saved signatures list index
number An optional parameter for the index of the annotaiton parameter within the SignatureCreateTool saved signatures list Returns:
Whether or not a signature annotation should be included in the annotation preset- Type
- boolean
-
storeisReplyDisabled(annotation)
-
Callback that gets passed to disableReplyForAnnotations
Parameters:
Name Type Description annotation
Annotations.Annotation Annotation object Returns:
Whether the reply of the annotation should be disabled.- Type
- boolean
Events
-
annotationFilterChanged
-
Triggered when the annotation filter is changed. Returns empty arrays if the filter is cleared.
Example
// Listening to this event WebViewer(...).then(function(instance) { instance.iframeWindow.addEventListener('annotationFilterChanged', e => { const { types, authors } = e.detail; console.log(types, authors); }) });
-
panelResized
-
Triggered when the panels are resized
Example
// Listening to this event WebViewer(...).then(function(instance) { instance.iframeWindow.addEventListener('panelResized', e => { const { element, width } = e.detail; console.log(element, width); }) });
-
themeChanged
-
Triggered when the UI theme is changed
Example
// Listening to this event WebViewer(...).then(function(instance) { instance.iframeWindow.addEventListener('themeChanged', e => { const theme = e.detail; console.log(theme); }) });