_DTE.Windows Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a Windows collection containing the windows that display in the object.
public:
property EnvDTE::Windows ^ Windows { EnvDTE::Windows ^ get(); };
[System.Runtime.InteropServices.DispId(110)]
public EnvDTE.Windows Windows { [System.Runtime.InteropServices.DispId(110)] get; }
[<System.Runtime.InteropServices.DispId(110)>]
[<get: System.Runtime.InteropServices.DispId(110)>]
member this.Windows : EnvDTE.Windows
Public ReadOnly Property Windows As Windows
Property Value
A Windows collection.
- Attributes
Examples
Sub WindowsExample()
Dim win As Windows
win = DTE.Windows
MsgBox("Number of windows: " & win.Count)
End Sub