# GrapeCity.ActiveReports.PageReportModel.ReportItem.Label

## Content

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



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



<a id="GrapeCity_ActiveReports_PageReportModel_ReportItem_Label_" data-uid="GrapeCity.ActiveReports.PageReportModel.ReportItem.Label*"></a>
<h4 id="GrapeCity_ActiveReports_PageReportModel_ReportItem_Label" data-uid="GrapeCity.ActiveReports.PageReportModel.ReportItem.Label">Label</h4>
<div class="markdown level1 summary"><p>Gets or sets a label for identifying an instance of a report item within the client UI (e.g., a user-friendly label for searching or appearing in the Document Map).</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public ExpressionInfo Label { 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="../MESCIUS.ActiveReports.Core.Data.ExpressionInfo/GrapeCity.Enterprise.Data.Expressions.ExpressionInfo.html">ExpressionInfo</a></td>
      <td><p>An <a class="xref" href="../MESCIUS.ActiveReports.Core.Data.ExpressionInfo/GrapeCity.Enterprise.Data.Expressions.ExpressionInfo.html">ExpressionInfo</a> object representing the label text.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="GrapeCity_ActiveReports_PageReportModel_ReportItem_Label_remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>The label is used in hierarchical listings of report items within the UI (the Document Map) based on the object containment hierarchy in the report definition. 
Peer items are listed in left-to-right, top-to-bottom order.</p>
    <p>If the expression returns <code>null</code>, no item is added to the Document Map.</p>
    <p>Labels are not used for report items in the page header or footer.</p>
</div>
<h5 id="GrapeCity_ActiveReports_PageReportModel_ReportItem_Label_examples">Examples</h5>
<pre><code class="lang-csharp">var reportItem = new TextBox();
reportItem.Label = "Section 1";</code></pre>

</div>
