[]
Gets or sets a value indicating whether the print progress dialog is displayed during the printing process.
public bool ShowPrintProgressDialog { get; set; }
Type | Description |
---|---|
bool |
|
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.
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