pdf.title String
(default: null)
Sets the title of the PDF file.
Example - set the title
<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
tools: ["pdf"],
pdf: {
title : "Overview"
}
});
</script>