pdf.keywordsString(default: null)
Specifies the keywords of the exported PDF file.
Example - set the keywords
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
    toolbar: ["pdf"],
    pdf: {
        keywords: "northwind products"
    },
    dataSource: {
        transport: {
            read: {
                url: "https://demos.telerik.com/service/v2/core/products"
            }
        },
        pageSize: 10
    },
    pageable: true
});
</script>
In this article