This topic has not yet been rated - Rate this topic

_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
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.