Task.Visible property (Word)

True if the specified object is visible. Read/write Boolean.

Syntax

expression.Visible

expression Required. A variable that represents a 'Task' object.

Remarks

For any object, some methods and properties may be unavailable if the Visible property is False.

Example

This example hides the Calculator, if it is running. If it is not running, a message is displayed.

If Tasks.Exists("Calculator") Then 
 Tasks("Calculator").Visible = False 
Else 
 Msgbox "Calculator is not running." 
End If

See also

Task Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.