[]
        
(Showing Draft Content)

C1.Win.FlexPivot.FlexPivotPage.LabelStatus

LabelStatus Property

LabelStatus

Gets the ToolStripStatusLabel that appears on the left of the status strip docked to the bottom of the page.

Declaration
[Browsable(false)]
public ToolStripStatusLabel LabelStatus { get; }
Examples

The code below implements a simple method to show a status message on the bottom of a FlexPivotPage called _c1FlexPivotPage.

// show status message
void ShowStatus(string msg)
{
  _c1FlexPivotPage.LabelStatus.Text = msg;
}