messages.dialogs.exportAsDialog.pdfString(default: "Portable Document Format (.pdf)")
Specifies the display text for the PDF 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: {
pdf: "PDF Format (.pdf)"
}
}
}
});
</script>
In this article