Share via


Visible Property

Home Page (Objects)OverviewFAQReference

Applies to: Application object

Gets or sets whether the Developer Studio main window is visible.

Syntax

object**.Visible** [=boolean]

Parameters

object

An expression that evaluates to an Application object. When you access the Visible property of the Application object, you can omit object because the name of the Application object is implied when you access its properties and methods.

boolean

A Boolean that sets whether the window is visible. Possible values are:

True Makes the window visible.
False Makes the window invisible.

Remarks

The Visible property has the Boolean type.

Example

The following example makes the Developer Studio main window visible:

Application.Visible = True