# GrapeCity.ActiveReports.PrinterSettings.PrintOptions

## Content

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



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



<a id="GrapeCity_ActiveReports_PrinterSettings_PrintOptions_" data-uid="GrapeCity.ActiveReports.PrinterSettings.PrintOptions*"></a>
<h4 id="GrapeCity_ActiveReports_PrinterSettings_PrintOptions" data-uid="GrapeCity.ActiveReports.PrinterSettings.PrintOptions">PrintOptions</h4>
<div class="markdown level1 summary"><p>Gets the <a class="xref" href="../MESCIUS.ActiveReports/GrapeCity.ActiveReports.Printing.PrintOptions.html">PrintOptions</a> instance associated with this printer settings.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public PrintOptions PrintOptions { get; }</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="../MESCIUS.ActiveReports/GrapeCity.ActiveReports.Printing.PrintOptions.html">PrintOptions</a></td>
      <td><p>A <a class="xref" href="../MESCIUS.ActiveReports/GrapeCity.ActiveReports.Printing.PrintOptions.html">PrintOptions</a> object that contains various settings to control the printing process,
such as the PageScaling, PagesPerSheet, and PageOrder.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="GrapeCity_ActiveReports_PrinterSettings_PrintOptions_remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>The <a class="xref" href="../MESCIUS.ActiveReports/GrapeCity.ActiveReports.Printing.PrintOptions.html">PrintOptions</a> property allows for detailed customization of the printing process.
It provides access to settings that affect how a report is printed. This property is initialized with default print options
when the <a class="xref" href="GrapeCity.ActiveReports.PrinterSettings.html">PrinterSettings</a> instance is created. It can be modified to meet specific printing
requirements before initiating the print job.</p>
</div>
<h5 id="GrapeCity_ActiveReports_PrinterSettings_PrintOptions_examples">Examples</h5>
<p>This example demonstrates how to access and modify print options:</p>
<pre><code class="lang-csharp">var printerSettings = new GrapeCity.ActiveReports.PrinterSettings();
printerSettings.PrintOptions.PagesPerSheet = 2;
printerSettings.PrintOptions.PageScaling = PageScaling.MultiplePages;
printerSettings.PrintOptions.PrintPageBorder = true;</code></pre>

</div>
