pdf.keywords String
(default: null)
Specifies the keywords of the exported PDF file.
Example - setting the keywords
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
columns: {
fieldColumn: { width: 200 },
valueColumn: { width: 250 }
},
model: {
foo: "bar",
baz: 5
},
toolbar: ["pdf"],
pdf: {
keywords: "object details"
}
});
</script>