Description
Sets or returns whether the main window is visible.
Property type
Read-write property
Syntax
Visual Basic |
---|
Public Property Visible As Boolean |
Example
Private Sub VisiblePropExample()
Application.Visible = False
MsgBox "Visible property is now false. Click OK to restore."
Application.Visible = True
End
End Sub