Printing
The printing feature of PdfViewer allows you to open a dialog and print the current document.
The printing feature is supported only on Windows 11 OS.
To print a document, call the Print
method of RadPdfViewer
. This will open a print dialog with printing settings and preview of the document.
Using the Print method
this.pdfViewer.Print();
The printing action can be executed also with the built-in print button of the RadPdfViewerToolBar. To display the additional button, set the HasPrintButton
property of the toolbar to true
.
Showing the print button of the toolbar
telerik:RadPdfViewerToolBar RadPdfViewer="{Binding ElementName=pdfViewer, Mode=OneTime}" HasPrintButton="True"/>