Application.Windows property (Visio)
Returns the Windows collection for a Microsoft Visio instance or window. Read-only.
Syntax
expression.Windows
expression A variable that represents an Application object.
Return value
Windows
Example
This Microsoft Visual Basic macro gets the Windows collection of the Application object and prints the ID of each window in the collection in the Immediate window.
Public Sub Windows_Example()
Dim vsoApplication As Visio.Application
Dim vsoWindows As Visio.Windows
Dim intCounter As Integer
'Get the Windows collection.
Set vsoApplication = Application
Set vsoWindows = vsoApplication.Windows
For intCounter = 1 To vsoWindows.Count
Debug.Print vsoWindows.Item(intCounter).ID
Next intCounter
End Sub
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.