# GrapeCity.ActiveReports.Design.Designer.Zoom

## Content

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



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



<a id="GrapeCity_ActiveReports_Design_Designer_Zoom_" data-uid="GrapeCity.ActiveReports.Design.Designer.Zoom*"></a>
<h4 id="GrapeCity_ActiveReports_Design_Designer_Zoom" data-uid="GrapeCity.ActiveReports.Design.Designer.Zoom">Zoom</h4>
<div class="markdown level1 summary"><p>Gets or sets a value representing the zoom level for the designer surface.</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 float Zoom { 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="https://learn.microsoft.com/dotnet/api/system.single">float</a></td>
      <td><p>A <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.single">float</a> representing the zoom level. Valid values range from 0.5 (50%) to 4.0 (400%).</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="GrapeCity_ActiveReports_Design_Designer_Zoom_remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>This value determines the scale at which the report is displayed in the designer.
Setting the zoom level allows you to view the report at various scales, making it easier to design and review the report layout.
The default zoom level is 1.0 (100%), which displays the report at actual size.</p>
</div>
<h5 id="GrapeCity_ActiveReports_Design_Designer_Zoom_examples">Examples</h5>
<pre><code class="lang-csharp">private void ResetZoom_Click(object sender, EventArgs e)
{
	designer.Zoom = 1;
}</code></pre>

<h5 class="exceptions">Exceptions</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Condition</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.argumentexception">ArgumentException</a></td>
      <td><p>Thrown if the set value is outside the allowable range of 0.5 to 4.0.</p>
</td>
    </tr>
  </tbody>
</table>
</div>
