DTE2.Windows Property
Gets a Windows collection containing the windows that display in the object.
Namespace: EnvDTE80
Assembly: EnvDTE80 (in EnvDTE80.dll)
Syntax
'Declaration
ReadOnly Property Windows As Windows
Windows Windows { get; }
property Windows^ Windows {
Windows^ get ();
}
abstract Windows : Windows with get
function get Windows () : Windows
Property Value
Type: EnvDTE.Windows
A Windows collection.
Examples
Sub WindowsExample()
Dim win As Windows
win = DTE2.Windows
MsgBox("Number of windows: " & win.Count)
End Sub
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.