DxDocumentViewerExportSettings.ShowPrintNotificationDialog Property
Specifies whether to display an additional dialog during print operations. The dialog allows users to download the PDF file sent to printing.
Namespace: DevExpress.Blazor.Reporting
Assembly: DevExpress.Blazor.Reporting.v25.2.JSBasedControls.Common.dll
NuGet Package: DevExpress.Blazor.Reporting.JSBasedControls.Common
Declaration
Property Value
| Type | Description |
|---|---|
| Boolean |
|
Remarks
The ShowPrintNotificationDialog property is in effect when the UseSameTab property is enabled.
Use the ShowPrintNotificationDialog property to specify whether to display an additional dialog with a link to the printed PDF file:
When users click the Print toolbar icon, the Print dialog appears where they can send a document to the printer.

If the
ShowPrintNotificationDialogproperty is enabled, the Document Viewer displays an additional dialog with a link to the PDF file that was just sent to the printer.
This additional dialog helps users troubleshoot issues when the browser is unable to print a document. Disable the
ShowPrintNotificationDialogproperty to hide this dialog. However, we recommend that your application should allow users to enable the ShowPrintNotificationDialog property or keep it enabled for cases when a browser stops printing documents after an update.You can localize the additional dialog with the following localization strings:
The code snippet sets the ShowPrintNotificationDialog property to false to hide the additional dialog:
<DxDocumentViewer ReportName=@ReportName Height="700px" CssClass="w-100">
<DxDocumentViewerExportSettings ShowPrintNotificationDialog="false"/>
</DxDocumentViewer>