MESCIUS.ActiveReports.Viewer.Common Assembly / GrapeCity.ActiveReports Namespace / PrinterSettings Class / ShowPrintProgressDialog Property
Example

ShowPrintProgressDialog Property
Gets or sets a value indicating whether the print progress dialog is displayed during the printing process.
Syntax
'Declaration
 
Public Property ShowPrintProgressDialog As Boolean
 

Property Value

true if the print progress dialog should be shown; otherwise, false. The default value is true.
Remarks
The print progress dialog provides users with feedback on the status of the current print job, including information such as the number of pages printed. This dialog can be useful in interactive applications where it is important to keep the user informed about the progress of printing operations. Setting this property to false suppresses the display of the print progress dialog, which can be desirable in scenarios where the printing process should occur without user interaction, such as in batch printing or automated report generation tasks.
Example
This example demonstrates how to suppress the print progress dialog for a non-interactive printing operation:
var printerSettings = new GrapeCity.ActiveReports.PrinterSettings();
printerSettings.ShowPrintProgressDialog = false;
// Proceed with printing operations
See Also