messages.dialogs.exportAsDialogObject

Specifies the localization messages for the export dialog that appears when using DPL processing. Contains text for dialog elements including title, file format options, and form labels.

Example

pseudo
  <div id="pdfviewer"></div>
  <script type="module">
    $("#pdfviewer").kendoPDFViewer({
      dplProcessing: {
        read: {
          url: ""
        },
        download: {
          url: ""
        },
        upload: {
          url: ""
        }
      },
      messages: {
        dialogs: {
          exportAsDialog: {
            title: "Export Document...",
            defaultFileName: "MyDocument",
            pdf: "PDF Format (.pdf)",
            png: "PNG Format (.png)",
            svg: "SVG Format (.svg)",
            labels: {
              fileName: "File Name",
              saveAsType: "Save as Type",
              page: "Page"
            }
          }
        }
      }
    });
  </script>