Kendo.Mvc.UI.EditorPdfSettings
Kendo UI EditorPdfSettings class
Properties
Author
The author of the PDF document.
AutoPrint
Specifies if the Print dialog should be opened immediately after loading the document.
AvoidLinks
A flag indicating whether to produce actual hyperlinks in the exported PDF file.It's also possible to pass a CSS selector as argument. All matching links will be ignored.
Creator
The creator of the PDF document.
Date
The date when the PDF document is created. Defaults to new Date().
FileName
Specifies the file name of the exported PDF file.
ForceProxy
If set to true, the content will be forwarded to proxyURL even if the browser supports saving files locally.
JpegQuality
Specifies the quality of the images within the exported file, from 0 to 1.
KeepPNG
If set to true all PNG images contained in the exported file will be kept in PNG format.
Keywords
Specifies the keywords of the exported PDF file.
Landscape
Set to true to reverse the paper dimensions if needed such that width is the larger edge.
ProxyURL
The URL of the server side proxy which will stream the file to the end user.A proxy will be used when the browser is not capable of saving files locally, for example, Internet Explorer 9 and Safari.The developer is responsible for implementing the server-side proxy.The proxy will receive a POST request with the following parameters in the request body: contentType: The MIME type of the file; base64: The base-64 encoded file content or fileName: The file name, as requested by the caller.. The proxy should return the decoded file with the "Content-Disposition" header set toattachment; filename="
ProxyTarget
A 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 iframe, the proxy should set the "Content-Disposition" header to inline; filename="
Subject
Sets the subject of the PDF file.
Title
Sets the title of the PDF file.
Methods
SerializeSettings
Serialize current instance to Dictionary