Skip to main content
All docs
V25.1
  • SpreadsheetControl.CreateStatusBarManager() Method

    Adds a status bar with all Spreadsheet-related items to the Spreadsheet control with a Bar UI.

    Namespace: DevExpress.XtraSpreadsheet

    Assembly: DevExpress.XtraSpreadsheet.v25.1.dll

    NuGet Package: DevExpress.Win.Spreadsheet

    Declaration

    public BarManager CreateStatusBarManager()

    Returns

    Type Description
    BarManager

    A component that manages the created status bar.

    Remarks

    Use the CreateStatusBarManager method overloads to add a status bar to a Spreadsheet application with a Bar UI.

    using DevExpress.XtraBars;
    using DevExpress.XtraSpreadsheet;
    // ...
    
    public Form1()
    {
        InitializeComponent();
        // Create the Spreadsheet's toolbar menu.
        BarManager barManager = spreadsheetControl1.CreateBars();
        // Add a status bar to the Spreadsheet.
        // The status bar is managed by the same BarManager instance that stores the created toolbars.
        spreadsheetControl1.CreateStatusBarManager();
        // Display the status bar and toolbars on the Form.
        barManager.Form = this;
    }
    

    Use the CreateRibbonStatusBar method to create a status bar for the Spreadsheet control with a Ribbon UI.

    Tip

    You can also use the CreateStatusBarManager method to add a status bar to a standalone Spreadsheet control that does not have a Ribbon or Bar UI.

    // Add a status bar to the Spreadsheet control.
    BarManager statusBar = spreadsheetControl1.CreateStatusBarManager();
    // Display the status bar on the Form.
    statusBar.Form = this;
    
    See Also