# GrapeCity.ActiveReports.Design.Designer.PageReportDesignerActions

## Content

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



<h1 id="GrapeCity_ActiveReports_Design_Designer_PageReportDesignerActions_" data-uid="GrapeCity.ActiveReports.Design.Designer.PageReportDesignerActions*">PageReportDesignerActions Property
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="GrapeCity_ActiveReports_Design_Designer_PageReportDesignerActions_" data-uid="GrapeCity.ActiveReports.Design.Designer.PageReportDesignerActions*"></a>
<h4 id="GrapeCity_ActiveReports_Design_Designer_PageReportDesignerActions" data-uid="GrapeCity.ActiveReports.Design.Designer.PageReportDesignerActions">PageReportDesignerActions</h4>
<div class="markdown level1 summary"><p>Gets or sets a value representing the allowed actions in PageReport Designer.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public PageReportDesignerActions PageReportDesignerActions { 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="GrapeCity.ActiveReports.Design.PageReportDesignerActions.html">PageReportDesignerActions</a></td>
      <td><p>The page report designer actions as defined by the <a class="xref" href="GrapeCity.ActiveReports.Design.PageReportDesignerActions.html">PageReportDesignerActions</a> enumeration. The default value
is <a class="xref" href="GrapeCity.ActiveReports.Design.PageReportDesignerActions.html#GrapeCity_ActiveReports_Design_PageReportDesignerActions_All">All</a>.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="GrapeCity_ActiveReports_Design_Designer_PageReportDesignerActions_remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>This property controls the actions that are permitted within the PageReport Designer. It allows for granular control over the functionality available to the user,
such as editing, deleting, or adding new pages to the report. By adjusting the allowed actions, the designer can be customized to fit specific user roles or
workflows, enhancing security and usability.</p>
</div>
<h5 id="GrapeCity_ActiveReports_Design_Designer_PageReportDesignerActions_examples">Examples</h5>
<p>You can disable certain actions for pages in page reports.</p>
<pre><code class="lang-csharp">// Disable the action to add a new page.
designer.PageReportDesignerActions = PageReportDesignerActions.All ^ PageReportDesignerActions.AddPage</code></pre>

</div>
