Share via


Windows Property [Visio 2003 SDK Documentation]

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

objRet = object**.Windows**

objRet     The Windows collection of the Application object.

object     Required. An expression that returns an Application or Window object that owns the collection.

Version added

2.0

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

Applies to | <Global> object | Application object | InvisibleApp object | Window object

See Also | Window object | Windows collection