'Declaration Public Property ShowPrintProgressDialog As Boolean
public bool ShowPrintProgressDialog {get; set;}
Property Value
true
if the print progress dialog should be shown; otherwise, false
. The default value is true
.'Declaration Public Property ShowPrintProgressDialog As Boolean
public bool ShowPrintProgressDialog {get; set;}
true
if the print progress dialog should be shown; otherwise, false
. The default value is true
.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.var printerSettings = new GrapeCity.ActiveReports.PrinterSettings(); printerSettings.ShowPrintProgressDialog = false; // Proceed with printing operations