# GrapeCity.ActiveReports.PrinterSettings.PrintProgress

## Content

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




<h1 id="GrapeCity_ActiveReports_PrinterSettings_PrintProgress" data-uid="GrapeCity.ActiveReports.PrinterSettings.PrintProgress" class="text-break">PrintProgress Event
</h1>
<div class="markdown level0 summary"><p>Occurs when there is a change in the printing progress.</p>
</div>
<div class="markdown level0 conceptual"></div>
<h6><strong>Namespace</strong>: <a class="xref" href="GrapeCity.ActiveReports.html">GrapeCity.ActiveReports</a></h6>
<h6><strong>Assembly</strong>: MESCIUS.ActiveReports.Viewer.Common.dll</h6>
<h5 id="GrapeCity_ActiveReports_PrinterSettings_PrintProgress_syntax">Syntax</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public event PrintProgressEventHandler PrintProgress</code></pre>
</div>
<h5 class="returns">Returns</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="../MESCIUS.ActiveReports/GrapeCity.ActiveReports.Printing.PrintProgressEventHandler.html">PrintProgressEventHandler</a></td>
      <td>Occurs when there is a change in the printing progress.</td>
    </tr>
  </tbody>
</table>
<h5 id="GrapeCity_ActiveReports_PrinterSettings_PrintProgress_remarks"><strong>Remarks</strong></h5>
<div class="markdown level0 remarks"><p>This event is raised during the printing process to provide updates on the progress of the print job.
It can be used to update a progress bar, display status messages, or perform other UI updates related to the printing progress.
Subscribing to this event is particularly useful in applications where user feedback during long-running print jobs is essential.</p>
</div>
<h5 id="GrapeCity_ActiveReports_PrinterSettings_PrintProgress_examples"><strong>Examples</strong></h5>
<p>This example demonstrates how to use the <a class="xref" href="../MESCIUS.ActiveReports/GrapeCity.ActiveReports.Printing.PrintProgressEventArgs.html">PrintProgressEventArgs</a> in a print progress event handler:</p>
<pre><code class="lang-csharp">void OnPrintProgress(object sender, GrapeCity.ActiveReports.Printing.PrintProgressEventArgs e)
{
    Console.WriteLine($"Printing page {e.CurrentPage}.");
    // Additional logic to handle print progress can be added here
}</code></pre>

</div>
