# GrapeCity.ActiveReports.SectionReport.PageStart

## Content

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




<h1 id="GrapeCity_ActiveReports_SectionReport_PageStart" data-uid="GrapeCity.ActiveReports.SectionReport.PageStart" class="text-break">PageStart Event
</h1>
<div class="markdown level0 summary"><p>Occurs at the beginning of page processing.</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.dll</h6>
<h5 id="GrapeCity_ActiveReports_SectionReport_PageStart_syntax">Syntax</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public event EventHandler PageStart</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="https://learn.microsoft.com/dotnet/api/system.eventhandler">EventHandler</a></td>
      <td>Occurs at the beginning of page processing.</td>
    </tr>
  </tbody>
</table>
<h5 id="GrapeCity_ActiveReports_SectionReport_PageStart_examples"><strong>Examples</strong></h5>
<pre><code class="lang-csharp">int i = 0;
report.PageStart += (sender, e) =&gt;
	i = 0;
report.FetchData += (sender, e) =&gt;
	e.EOF = i++ &gt; 3;
report.PageEnd += (sender, e) =&gt;
	i = 0;</code></pre>

</div>
