_DTE::Windows Property

 

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

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

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

Property Value

Type: EnvDTE::Windows^

A Windows collection.

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