Previous Document Next Document
Application.Visible

Property Visible As Boolean

Member of Application

The Visible property returns or sets 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.

The following code example hides CorelDRAW by setting the Visible property to False, and 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 2007 Corel Corporation. All rights reserved.