Click or drag to resize

PageClient.PrintToPDFAsync Method

Version 112.3.0
Print page as PDF.

Namespace:  CefSharp.DevTools.Page
Assembly:  CefSharp.Core (in CefSharp.Core.dll) Version: 112.3.0.0
Syntax
public Task<PrintToPDFResponse> PrintToPDFAsync(
	bool? landscape = null,
	bool? displayHeaderFooter = null,
	bool? printBackground = null,
	double? scale = null,
	double? paperWidth = null,
	double? paperHeight = null,
	double? marginTop = null,
	double? marginBottom = null,
	double? marginLeft = null,
	double? marginRight = null,
	string pageRanges = null,
	string headerTemplate = null,
	string footerTemplate = null,
	bool? preferCSSPageSize = null,
	PrintToPDFTransferMode? transferMode = null
)

Parameters

landscape (Optional)
Type: System.Nullable<Boolean>
Paper orientation. Defaults to false.
displayHeaderFooter (Optional)
Type: System.Nullable<Boolean>
Display header and footer. Defaults to false.
printBackground (Optional)
Type: System.Nullable<Boolean>
Print background graphics. Defaults to false.
scale (Optional)
Type: System.Nullable<Double>
Scale of the webpage rendering. Defaults to 1.
paperWidth (Optional)
Type: System.Nullable<Double>
Paper width in inches. Defaults to 8.5 inches.
paperHeight (Optional)
Type: System.Nullable<Double>
Paper height in inches. Defaults to 11 inches.
marginTop (Optional)
Type: System.Nullable<Double>
Top margin in inches. Defaults to 1cm (~0.4 inches).
marginBottom (Optional)
Type: System.Nullable<Double>
Bottom margin in inches. Defaults to 1cm (~0.4 inches).
marginLeft (Optional)
Type: System.Nullable<Double>
Left margin in inches. Defaults to 1cm (~0.4 inches).
marginRight (Optional)
Type: System.Nullable<Double>
Right margin in inches. Defaults to 1cm (~0.4 inches).
pageRanges (Optional)
Type: System.String
Paper ranges to print, one based, e.g., '1-5, 8, 11-13'. Pages areprinted in the document order, not in the order specified, and nomore than once.Defaults to empty string, which implies the entire document is printed.The page numbers are quietly capped to actual page count of thedocument, and ranges beyond the end of the document are ignored.If this results in no pages to print, an error is reported.It is an error to specify a range with start greater than end.
headerTemplate (Optional)
Type: System.String
HTML template for the print header. Should be valid HTML markup with followingclasses used to inject printing values into them:- `date`: formatted print date- `title`: document title- `url`: document location- `pageNumber`: current page number- `totalPages`: total pages in the documentFor example, `<span class=title> </span>` would generate span containing the title.
footerTemplate (Optional)
Type: System.String
HTML template for the print footer. Should use the same format as the `headerTemplate`.
preferCSSPageSize (Optional)
Type: System.Nullable<Boolean>
Whether or not to prefer page size as defined by css. Defaults to false,in which case the content will be scaled to fit the paper size.
transferMode (Optional)
Type: System.Nullable<PrintToPDFTransferMode>
return as stream

Return Value

Type: Task<PrintToPDFResponse>
returns System.Threading.Tasks.Task<PrintToPDFResponse>
See Also