messages.commands.pdfString(default: "Export to PDF")
Defines the text of the Export to PDF button that exports the component's data in PDF format.
Example
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
messages: {
commands: {
pdf: "Export as Document"
}
},
model: {
foo: "bar",
baz: 5
}
});
</script>