Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 856 Bytes

Excel.Application.Visible.md

File metadata and controls

41 lines (26 loc) · 856 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.Visible property (Excel)
vbaxl10.chm133229
vbaxl10.chm133229
Excel.Application.Visible
4d702074-7d76-7b43-25e1-11d6a440392f
04/05/2019
medium

Application.Visible property (Excel)

Returns or sets a Boolean value that determines whether the object is visible. Read/write.

Syntax

expression.Visible

expression A variable that represents an Application object.

Example

'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]