Share via


PageWindowEx.Visible Property

Returns a Boolean that represents the visible state of a page window. False indicates that a page window has a windowless state.

expression.Visible

expression Required. An expression that returns an PageWindowEx object.

Example

The following example displays a message stating the the visible state of the active page window.

  Sub CheckIfVisible()
    Dim objPage As PageWindowEx
    Set objPage = ActivePageWindow
    MsgBox objPage.Visible
End Sub

Applies to | PageWindowEx Object | WebWindowEx Object