messages.toolbar.zoomObject
Specifies the localization messages for the zoom tool dropdown in the toolbar. Contains text for various zoom options including predefined zoom levels and zoom controls.
Example
<div id="pdfviewer"></div>
<script type="module">
$("#pdfviewer").kendoPDFViewer({
pdfjsProcessing: {
file: "https://demos.telerik.com/kendo-ui/content/web/pdfViewer/sample.pdf"
},
messages: {
toolbar: {
zoom: {
actualWidth: "Actual Width",
autoWidth: "Auto Width",
fitWidth: "Fit Width",
pageWidth: "Page Width"
}
}
}
});
</script>
In this article