pdf.autoPrintBoolean
(default: false)
Specifies if the Print dialog should be opened immediately after loading the document.
Note: Some PDF Readers/Viewers will not allow opening the Print Preview by default, it might be necessary to configure the corresponding add-on or application.
Example
<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
tools: ["pdf"],
pdf: {
autoPrint: true
}
});
</script>
In this article