DTE2::Windows Property

 

Gets a Windows collection containing the windows that display in the object.

Namespace:   EnvDTE80
Assembly:  EnvDTE80 (in EnvDTE80.dll)

property Windows^ Windows {
	Windows^ get();
}

Property Value

Type: EnvDTE::Windows^

A Windows collection.

Implements

_DTE::Windows

Sub WindowsExample()
   Dim win As Windows
   win = DTE2.Windows
   MsgBox("Number of windows: " & win.Count)
End Sub
Return to top
Show: