messages.dialogs.exportAsDialog.labels.saveAsTypeString(default: "Save as")

Specifies the label text for the file format selection dropdown in the export dialog where users choose the export format (PDF, PNG, or SVG).

Example

pseudo
  <div id="pdfviewer"></div>
  <script type="module">
    $("#pdfviewer").kendoPDFViewer({
      dplProcessing: {
        read: {
          url: ""
        },
        download: {
          url: ""
        },
        upload: {
          url: ""
        }
      },
      messages: {
        dialogs: {
          exportAsDialog: {
            labels: {
              saveAsType: "Custom Save As Type Label"
            }
          }
        }
      }
    });
  </script>