GridPdfSettingsTagHelper

Example

Razor
<pdf>
    <grid-pdf-margin />
</pdf>

ChildTags

Tag NameDetails
grid-pdf-marginGridPdfMarginSettingsTagHelper

Attributes

AttributeTypeDescription
all-pagesBooleanExports all grid pages, starting from the first one.
authorStringThe author of the PDF document.
auto-printBooleanSpecifies if the Print dialog should be opened immediately after loading the document.
avoid-linksBooleanA 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.
creatorStringThe creator of the PDF document.
dateDateTimeThe date when the PDF document is created. Defaults to new Date().
file-nameStringSpecifies the file name of the exported PDF file.
force-page-breakStringForces the page to break before each element that matches the applied CSS selector.
force-proxyBooleanIf set to true, the content will be forwarded to proxyURL even if the browser supports saving files locally.
jpeg-qualityDoubleSpecifies the quality of the images within the exported file, from 0 to 1.
keep-pngBooleanIf set to true all PNG images contained in the exported file will be kept in PNG format.
keywordsStringSpecifies the keywords of the exported PDF file.
landscapeBooleanSet to true to reverse the paper dimensions if needed such that width is the larger edge.
paper-sizeStringSpecifies the paper size of the PDF document. The default "auto" means paper size is determined by content.Supported values: A predefined size: "A4", "A3" etc; An array of two numbers specifying the width and height in points (1pt = 1/72in) or An array of two strings specifying the width and height in units. Supported units are "mm", "cm", "in" and "pt"..
proxy-targetStringA 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="<fileName.pdf>".
proxy-urlStringThe 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="<fileName.pdf>".
repeat-headersBooleanSet this to true to repeat the grid headers on each page.
scaleDoubleA scale factor. In many cases, text size on screen will be too big for print, so you can use this option to scale down the output in PDF. See the documentation in drawDOM.
subjectStringSets the subject of the PDF file.
templateStringA piece of HTML to be included in each page. Can be used to display headers and footers. See the documentation in drawDOM.Available template variables include: * pageNum * totalPages
template-handlerStringA piece of HTML to be included in each page. Can be used to display headers and footers. See the documentation in drawDOM.Available template variables include: * pageNum * totalPages
template-idStringA piece of HTML to be included in each page. Can be used to display headers and footers. See the documentation in drawDOM.Available template variables include: * pageNum * totalPages
template-viewIHtmlContentA piece of HTML to be included in each page. Can be used to display headers and footers. See the documentation in drawDOM.Available template variables include: * pageNum * totalPages
titleStringSets the title of the PDF file.
In this article
ExampleChildTagsAttributes
Not finding the help you need?
Contact Support