# GrapeCity.ActiveReports.Design.Designer.PropertyGrid

## Content

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



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



<a id="GrapeCity_ActiveReports_Design_Designer_PropertyGrid_" data-uid="GrapeCity.ActiveReports.Design.Designer.PropertyGrid*"></a>
<h4 id="GrapeCity_ActiveReports_Design_Designer_PropertyGrid" data-uid="GrapeCity.ActiveReports.Design.Designer.PropertyGrid">PropertyGrid</h4>
<div class="markdown level1 summary"><p>Gets or sets a value representing the <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.propertygrid">PropertyGrid</a> instance used by the designer to display and edit the properties of the currently selected
report item.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public PropertyGrid PropertyGrid { 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.windows.forms.propertygrid">PropertyGrid</a></td>
      <td><p>The <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.propertygrid">PropertyGrid</a> that is attached to the designer. This grid displays the properties of the report item currently
selected in the designer, allowing the user to view and modify those properties.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="GrapeCity_ActiveReports_Design_Designer_PropertyGrid_remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>The <a class="xref" href="GrapeCity.ActiveReports.Design.Designer.PropertyGrid.html#GrapeCity_ActiveReports_Design_Designer_PropertyGrid">PropertyGrid</a> property plays a crucial role in the report design process, providing a user-friendly interface for inspecting
and editing the properties of report items. By integrating a <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.propertygrid">PropertyGrid</a> into the designer, developers can offer end-users
a powerful tool for customizing reports to meet their specific requirements.
<p>
This property is essential for enabling interactive report design experiences in applications that incorporate the GrapeCity ActiveReports Designer.
</p>
</div>
<h5 id="GrapeCity_ActiveReports_Design_Designer_PropertyGrid_examples">Examples</h5>
<p>This example shows how to integrate the Designer component with a PropertyGrid in a Windows Forms application.</p>
<pre><code class="lang-csharp">class MyForm : Form 
{
	MyForm()
	{
		var designer = new Designer() { Dock = DockStyle.Fill };
		var propertyGrid = new PropertyGrid { Dock = DockStyle.Right };
		designer.PropertyGrid = propertyGrid;
		Controls.Add(designer);
		Controls.Add(propertyGrid);
	}
}</code></pre>

</div>
