Configures the export settings for the saveAsPDF method.
Objectpdf.author
StringThe author of the PDF document that will be visible in the PDF file metadata.
Default: null
pdf.creator
StringThe creator of the PDF document.
Default: "Kendo UI PDF Generator"
pdf.date
DateThe date when the PDF document is created. Defaults to new Date().
pdf.fileName
StringSpecifies the file name of the exported PDF file.
Default: "Export.pdf"
pdf.forceProxy
BooleanIf set to true, the exported content is forwarded to the endpoint specified using the proxyURL setting, even if the browser supports saving of files in the user's local file system.
Default: false
pdf.keywords
StringSpecifies the keywords that will appear in the metadata of the exported PDF file.
Default: null
pdf.landscape
BooleanIf set to true, changes the document orientation to landscape. This property takes effect when pdf.paperSize is set.
Default: false
pdf.margin
ObjectSets the paper margins. The value has to be an object containing top, left, right, and bottom numbers which specify the paper margins. If numbers are passed, they are assumed to be in points (pt). By using strings, you can specify the units. The supported units are mm, cm, in, and pt (default).
pdf.paperSize
String|ArraySpecifies the paper size of the PDF document. The default setting is auto and determines the paper size by content.
The size of the content in pixels matches the size of the output in points (1 pixel = 1/72 inch).
The supported values are:
- A predefined size:
A0-A10,B0-B10,C0-C10,Executive,Folio,Legal,Letter,Tabloid. - An array of two numbers specifying the width and height in points (1pt = 1/72in)
- An array of two strings specifying the width and height in units.
The supported units are
mm,cm,in, andpt.
Default: "auto"
pdf.proxyTarget
StringA name or keyword indicating where to display the document returned from the proxy.
If you want to display the document in a new window or an iframe, the proxy method has to set the Content-Disposition header of the response to inline; filename="<fileName.pdf>".
Default: "_self"
pdf.proxyURL
StringThe URL of the server side proxy which will stream the file to the end user.
When the browser is not capable of saving files locally, a proxy will be used. Such browsers are Internet Explorer version 9 (and older) and Safari. You are responsible for implementing the server-side proxy. The proxy receives a POST request with the following parameters in the request body:
contentType- The MIME type of the filebase64- The base-64 encoded file contentfileName- The file name, as requested by the caller.
The proxy is expected to return the decoded file with a set Content-Disposition header.
You can see sample server proxy implementations here: Server Proxy Implementations.
Default: null
pdf.subject
StringSets the subject of document, which will be shown in the PDF file metadata.
Default: null
pdf.title
StringSets the title of the document, which will be shown in the PDF file metadata.
Default: null