messages.dialogs.exportAsDialog.pngString(default: "Portable Network Graphics (.png)")
Specifies the display text for the PNG export format option in the export dialog's file type dropdown list.
Example
pseudo
<div id="pdfviewer"></div>
<script type="module">
$("#pdfviewer").kendoPDFViewer({
dplProcessing: {
read: {
url: ""
},
download: {
url: ""
},
upload: {
url: ""
}
},
messages: {
dialogs: {
exportAsDialog: {
png: "PNG Format (.png)"
}
}
}
});
</script>