messages.toolbar.zoom.autoWidth String
(default: "Automatic Width")
To run the below example, open it in Dojo
Example - set custom text for Auto width message
<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: {
autoWidth: "Custom Automatic Width Message"
}
}
}
});
</script>