Share via


Application.Window Property

Visio Automation Reference

Returns the window associated with the current instance of Microsoft Office Visio. Read-only.

Version Information
 Version Added:  Visio 2003

Syntax

expression.Window

expression   A variable that represents an Application object.

Return Value
Window

Example

The following macro shows how to use the Window property to print the caption of the window associated with the current instance of Visio in the Immediate window.

Visual Basic for Applications
  
Public Sub Window_Example() 
 
    Debug.Print  Application.Window.Caption

End Sub

See Also