ComponentOne Olap for WinForms
C1.Win.Olap.4 Assembly / C1.Win.Olap Namespace / C1OlapPage Class / LabelStatus Property
Example

In This Topic
    LabelStatus Property
    In This Topic
    Gets the System.Windows.Forms.ToolStripStatusLabel that appears on the left of the status strip docked to the bottom of the page.
    Syntax
    'Declaration
     
    Public ReadOnly Property LabelStatus As System.Windows.Forms.ToolStripStatusLabel
    public System.Windows.Forms.ToolStripStatusLabel LabelStatus {get;}
    Example
    The code below implements a simple method to show a status message on the bottom of a C1OlapPage called _c1OlapPage.
    // show status message
    void ShowStatus(string msg)
    {
      _c1OlapPage.LabelStatus.Text = msg;
    }
    See Also