_DTE.Windows 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取 Windows 集合,其中包含在对象中显示的窗口。
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
属性值
一个 Windows 集合。
- 属性
示例
Sub WindowsExample()
Dim win As Windows
win = DTE.Windows
MsgBox("Number of windows: " & win.Count)
End Sub