Share via


InvisibleApp.Windows Property

Visio Automation Reference

Returns the Windows collection for a Microsoft Office Visio instance or window. Read-only.

Version Information
 Version Added:  Visio 2.0

Syntax

expression.Windows(lpdispRet)

expression   A variable that represents an InvisibleApp 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.

Visual Basic for Applications
  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

See Also