Previous Document Next Document

Object Model Reference : Classes : A : Application : Properties : Application.Visible


Application.Visible

Property Visible As Boolean

Description

Member of Application

The Visible property returns or specifies a value indicating the visibility of the application window. This property allows you to show or hide the CorelDRAW application window. If the Visible property is True, the application is running and visible on the monitor display.

VBA example

The following VBA example hides CorelDRAW by setting the Visible property to False, and it then shows CorelDRAW by setting the Visible property to True. Message boxes display messages indicating the visibility of the application.

Sub ApplicationVisible()
 Visible = False
 MsgBox "CorelDRAW is hidden."
 Visible = True
 MsgBox "CorelDRAW is now visible."
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.