# GrapeCity.ActiveReports.SectionReport.PageSettings

## Content

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



<h1 id="GrapeCity_ActiveReports_SectionReport_PageSettings_" data-uid="GrapeCity.ActiveReports.SectionReport.PageSettings*">PageSettings Property
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="GrapeCity_ActiveReports_SectionReport_PageSettings_" data-uid="GrapeCity.ActiveReports.SectionReport.PageSettings*"></a>
<h4 id="GrapeCity_ActiveReports_SectionReport_PageSettings" data-uid="GrapeCity.ActiveReports.SectionReport.PageSettings">PageSettings</h4>
<div class="markdown level1 summary"><p>Gets or sets a value representing the report’s page settings.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">[Browsable(false)]
public PageSettings PageSettings { 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.PageSettings.html">PageSettings</a></td>
      <td><p>A <a class="xref" href="GrapeCity.ActiveReports.SectionReport.PageSettings.html#GrapeCity_ActiveReports_SectionReport_PageSettings">PageSettings</a> value representing the page settings for the current report.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="GrapeCity_ActiveReports_SectionReport_PageSettings_remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>Lets you specify default report page: page paper size, orientation, margins etc. Shouldn't be <code>null</code>.</p>
</div>
<h5 id="GrapeCity_ActiveReports_SectionReport_PageSettings_examples">Examples</h5>
<pre><code class="lang-csharp">var sectionReport = new GrapeCity.ActiveReports.SectionReport();
sectionReport.LoadLayout(reportFilePath);
sectionReport.Document.Printer.PrinterName = String.Empty;
sectionReport.PageSettings.PaperKind = GrapeCity.ActiveReports.Printing.PaperKind.A3;
sectionReport.PageSettings.Orientation = GrapeCity.ActiveReports.Document.Section.PageOrientation.Landscape;
sectionReport.PageSettings.Margins.Top = 0.5f;
sectionReport.PageSettings.Margins.Bottom = 0.5f;
sectionReport.PageSettings.Margins.Left = 0.7f;
sectionReport.PageSettings.Margins.Right = 0.7f;
// specify print width too
sectionReport.PrintWidth = 16.5;</code></pre>

</div>
