pdf.landscape Boolean (default: false)

Set to true to reverse the paper dimensions if needed such that width is the larger edge.

Example - enable landscape mode

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