返回顶级扩展性对象。
命名空间:  VSLangProj
程序集:  VSLangProj(在 VSLangProj.dll 中)
语法
声明
ReadOnly Property DTE As DTE
    Get
DTE DTE { get; }
property DTE^ DTE {
    DTE^ get ();
}
abstract DTE : DTE
function get DTE () : DTE
属性值
类型:EnvDTE.DTE
返回 DTE 对象。
备注
在 Visual Studio 中,DTE 对象是自动化模型的根,其他对象模型常常称之为“应用程序”。
示例
Public Sub PrjDTE(ByVal dte As DTE2)
    ' List the parent object for the first VSProjectItem.
    ' Before running, open a VB or C# application in VS.
    Dim vsPrj As VSProject = _
    CType(dte.Solution.Projects.Item(1).Object, _
    VSProject)
    Dim vsPrjItem As VSProjectItem
    vsPrjItem = CType(dte.Solution.Projects.Item(1) _
    .ProjectItems.Item(1).Object, VSProjectItem)
    MsgBox("Parent object for VSProjectItem: " & vsPrjItem.DTE)
End Sub
public void PrjDTE(DTE2 dte)
{
    // Lists the parent object for the first VSProjectItem.
    // Before running, open a VB or C# application in VS.
    VSProject vsPrj = (VSProject)dte.Solution.
    Projects.Item(1).Object;
    VSProjectItem vsPrjItem;
    vsPrjItem = (VSProjectItem)dte.Solution.
    Projects.Item(1).ProjectItems.Item(1).Object;
    MessageBox.Show("Parent object for VSProjectItem" + vsPrjItem.DTE);
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。