# GrapeCity.ActiveReports.PrinterSettings.ShowPrintProgressDialog

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="GrapeCity_ActiveReports_PrinterSettings_ShowPrintProgressDialog_" data-uid="GrapeCity.ActiveReports.PrinterSettings.ShowPrintProgressDialog*">ShowPrintProgressDialog Property
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="GrapeCity_ActiveReports_PrinterSettings_ShowPrintProgressDialog_" data-uid="GrapeCity.ActiveReports.PrinterSettings.ShowPrintProgressDialog*"></a>
<h4 id="GrapeCity_ActiveReports_PrinterSettings_ShowPrintProgressDialog" data-uid="GrapeCity.ActiveReports.PrinterSettings.ShowPrintProgressDialog">ShowPrintProgressDialog</h4>
<div class="markdown level1 summary"><p>Gets or sets a value indicating whether the print progress dialog is displayed during the printing process.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public bool ShowPrintProgressDialog { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></td>
      <td><p><code>true</code> if the print progress dialog should be shown; otherwise, <code>false</code>. The default value is <code>true</code>.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="GrapeCity_ActiveReports_PrinterSettings_ShowPrintProgressDialog_remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>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 <code>false</code> 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.</p>
</div>
<h5 id="GrapeCity_ActiveReports_PrinterSettings_ShowPrintProgressDialog_examples">Examples</h5>
<p>This example demonstrates how to suppress the print progress dialog for a non-interactive printing operation:</p>
<pre><code class="lang-csharp">var printerSettings = new GrapeCity.ActiveReports.PrinterSettings();
printerSettings.ShowPrintProgressDialog = false;
// Proceed with printing operations</code></pre>

</div>
