Description
Returns the window collection object.
Property type
Read-only property
Syntax
Visual Basic |
---|
Public Property Windows As Windows |
Example
Private Sub WindowspropertyExample()
Dim myDoc As Document
Dim nowins As Integer
nowins = Application.Windows.Count
MsgBox "No. of windows = " & nowins
End Sub