pdf.author String (default: null)

The author of the PDF document.

Example - set the author

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