ShowStatusBar Property

ShowStatusBar returns or sets the status bar visibility state. Returns a Boolean. If the value is 'True', then the status bar is shown and if the value is 'False', then the status bar is hidden.

Syntax

object.ShowStatusBar

object.ShowStatusBar = bVisible

Parameter

Type

Description

bVisible

Boolean

required

Example 1

This example demonstrates how to return whether or not the status bar is displayed.

Debug.Print SurferApp.ShowStatusBar

Example 2

This example demonstrates how to hide the status bar.

SurferApp.ShowStatusBar = False

Example 3

This script displays all the properties in the Application object.

Used by: Application object