pdf.fileName String (default: "Export.pdf")

Specifies the file name of the exported PDF file.

Example - set the default PDF file name

<textarea id="editor"></textarea>
<script>
    $("#editor").kendoEditor({
        tools: ["pdf"],
        pdf: {
            fileName: "Document.pdf"
        }
    });
</script>
In this article