[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PrinterSettings.ShowPrintProgressDialog

ShowPrintProgressDialog Property

ShowPrintProgressDialog

Gets or sets a value indicating whether the print progress dialog is displayed during the printing process.

Declaration
public bool ShowPrintProgressDialog { get; set; }
Property Value
Type Description
bool

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.

Examples

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