# C1.Win.FlexPivot.FlexPivotPage.LabelStatus

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="C1_Win_FlexPivot_FlexPivotPage_LabelStatus_" data-uid="C1.Win.FlexPivot.FlexPivotPage.LabelStatus*">LabelStatus Property
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="C1_Win_FlexPivot_FlexPivotPage_LabelStatus_" data-uid="C1.Win.FlexPivot.FlexPivotPage.LabelStatus*"></a>
<h4 id="C1_Win_FlexPivot_FlexPivotPage_LabelStatus" data-uid="C1.Win.FlexPivot.FlexPivotPage.LabelStatus">LabelStatus</h4>
<div class="markdown level1 summary"><p>Gets the <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.toolstripstatuslabel">ToolStripStatusLabel</a> that appears on the
left of the status strip docked to the bottom of the page.</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 ToolStripStatusLabel LabelStatus { get; }</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">&lt;Browsable(False)&gt;
Public ReadOnly Property LabelStatus As ToolStripStatusLabel</code></pre>
</div>
<h5 id="C1_Win_FlexPivot_FlexPivotPage_LabelStatus_examples">Examples</h5>
<p>The code below implements a simple method to show a status message
on the bottom of a <a class="xref" href="C1.Win.FlexPivot.FlexPivotPage.html">FlexPivotPage</a> called <b>_c1FlexPivotPage</b>.</p>
<pre><code class="lang-csharp">// show status message
void ShowStatus(string msg)
{
  _c1FlexPivotPage.LabelStatus.Text = msg;
}</code></pre>

</div>
