title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Application.Visible property (Excel) |
vbaxl10.chm133229 |
|
|
4d702074-7d76-7b43-25e1-11d6a440392f |
04/05/2019 |
medium |
Returns or sets a Boolean value that determines whether the object is visible. Read/write.
expression.Visible
expression A variable that represents an Application object.
'When used in a workbook this makes Excel invisible.
Application.Visible = False
'Waiting five seconds, then showing Excel again.
Application.Wait Now + TimeValue("00:00:05")
'Makes Excel visible again.
Application.Visible = True
[!includeSupport and feedback]