messages.dialogs.exportAsDialog.svgString(default: "Scalable Vector Graphics (.svg)")

Specifies the display text for the SVG 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: {
            svg: "SVG Format (.svg)"
          }
        }
      }
    });
  </script>