Spread Windows Forms 12.0 Product Documentation
Adding a Status Bar
Spread Windows Forms 12.0 Product Documentation > Developer's Guide > Customizing Sheet Interaction > Customizing Interaction with the Overall Component > Adding a Status Bar

You can add a status bar to the component. The status bar allows you to set zoom settings and displays information such as the average, sum, and counts for selected cells.

The following image displays the sum, average, count, and zoom slider in the status bar.

The following options are available in the status bar:

Option Description
Average This option displays the average from the selected cells that contain numerical values.
Count This option displays the number of selected cells.
Minimum This option displays the minimum numerical value in the selected cells.
Maximum This option displays the maximum numerical value in the selected cells.
Numerical Count This option displays the number of selected cells that contain numerical values.
Sum This option displays the sum of numerical values in selected cells.
Zoom (100%) This option displays the zoom level. Select the zoom percentage to display a dialog that allows you to set additional magnification options.
Zoom Slider This option displays a slider with plus and minus buttons for changing the zoom options.

You can right-click on the status bar to display menu options that you can check or uncheck.

You can display the status bar in the designer by setting StatusBarVisible to true in the designer property window.

Using Code

Set the StatusBarVisible property to true to display the status bar.

Example

This example adds a status bar to the component and sets colors for the status bar.

C#
Copy Code
fpSpread1.StatusBarVisible = true;
fpSpread1.StatusBar.BackColor = Color.LemonChiffon;
fpSpread1.StatusBar.ZoomSliderColor = Color.Turquoise;
fpSpread1.StatusBar.ForeColor = Color.OliveDrab;
fpSpread1.StatusBar.ZoomButtonHoverColor = Color.Gold;
fpSpread1.StatusBar.ZoomSliderTrackColor = Color.DodgerBlue;
fpSpread1.StatusBar.ZoomSliderHoverColor = Color.BurlyWood;
VB
Copy Code
fpSpread1.StatusBarVisible = True
fpSpread1.StatusBar.BackColor = Color.LemonChiffon
fpSpread1.StatusBar.ZoomSliderColor = Color.Turquoise
fpSpread1.StatusBar.ForeColor = Color.OliveDrab
fpSpread1.StatusBar.ZoomButtonHoverColor = Color.Gold
fpSpread1.StatusBar.ZoomSliderTrackColor = Color.DodgerBlue
fpSpread1.StatusBar.ZoomSliderHoverColor = Color.BurlyWood
See Also