# GrapeCity.ActiveReports.PageReportModel.ReportItem.DataElementOutput

## Content

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



<h1 id="GrapeCity_ActiveReports_PageReportModel_ReportItem_DataElementOutput_" data-uid="GrapeCity.ActiveReports.PageReportModel.ReportItem.DataElementOutput*">DataElementOutput Property
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="GrapeCity_ActiveReports_PageReportModel_ReportItem_DataElementOutput_" data-uid="GrapeCity.ActiveReports.PageReportModel.ReportItem.DataElementOutput*"></a>
<h4 id="GrapeCity_ActiveReports_PageReportModel_ReportItem_DataElementOutput" data-uid="GrapeCity.ActiveReports.PageReportModel.ReportItem.DataElementOutput">DataElementOutput</h4>
<div class="markdown level1 summary"><p>Gets or sets a value indicating whether the item appears in a data rendering.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public DataElementOutput DataElementOutput { 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.PageReportModel.DataElementOutput.html">DataElementOutput</a></td>
      <td><p>A <a class="xref" href="GrapeCity.ActiveReports.PageReportModel.DataElementOutput.html">DataElementOutput</a> value indicating whether the item appears in a data rendering.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="GrapeCity_ActiveReports_PageReportModel_ReportItem_DataElementOutput_remarks">Remarks</h5>
<div class="markdown level1 remarks"><pre><code>&lt;p&gt;
    &lt;xref href=&quot;GrapeCity.ActiveReports.PageReportModel.DataElementOutput.Output&quot; data-throw-if-not-resolved=&quot;false&quot;&gt;&lt;/xref&gt; value indicates that the group appears in the output.&lt;/p&gt;
&lt;p&gt;
    &lt;xref href=&quot;GrapeCity.ActiveReports.PageReportModel.DataElementOutput.NoOutput&quot; data-throw-if-not-resolved=&quot;false&quot;&gt;&lt;/xref&gt; value indicates that the group does not appear in the output.&lt;/p&gt;
&lt;p&gt;
    &lt;xref href=&quot;GrapeCity.ActiveReports.PageReportModel.DataElementOutput.ContentsOnly&quot; data-throw-if-not-resolved=&quot;false&quot;&gt;&lt;/xref&gt; value indicates that the item does not appear in the XML, 
</code></pre>
<p>but its contents are rendered as if they were in the item's container. This value only applies to Lists.</p>
<p>
<a class="xref" href="GrapeCity.ActiveReports.PageReportModel.DataElementOutput.html#GrapeCity_ActiveReports_PageReportModel_DataElementOutput_Auto">Auto</a> (Default) value behaves in the same manner as <a class="xref" href="GrapeCity.ActiveReports.PageReportModel.DataElementOutput.html#GrapeCity_ActiveReports_PageReportModel_DataElementOutput_NoOutput">NoOutput</a>
for <a class="xref" href="GrapeCity.ActiveReports.PageReportModel.TextBox.html">TextBox</a> report items with constant values, <a class="xref" href="GrapeCity.ActiveReports.PageReportModel.DataElementOutput.html#GrapeCity_ActiveReports_PageReportModel_DataElementOutput_ContentsOnly">ContentsOnly</a> for <a class="xref" href="GrapeCity.ActiveReports.PageReportModel.Container.html">Container</a>
report items and <a class="xref" href="GrapeCity.ActiveReports.PageReportModel.DataElementOutput.html#GrapeCity_ActiveReports_PageReportModel_DataElementOutput_Output">Output</a> for all other items.</p>
</div>
<h5 id="GrapeCity_ActiveReports_PageReportModel_ReportItem_DataElementOutput_examples">Examples</h5>
<pre><code class="lang-csharp">var reportItem = new TextBox();
reportItem.DataElementOutput = DataElementOutput.Output;</code></pre>

</div>
