ShowPrintProgressDialog Property
Gets or sets a value indicating whether the print progress dialog is displayed during the printing process.
public bool ShowPrintProgressDialog {get; set;}
'Declaration
Public Property ShowPrintProgressDialog As Boolean
Property Value
true
if the print progress dialog should be shown; otherwise,
false
. The default value is
true
.
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