_DTE 接口
更新:2007 年 11 月
Visual Studio 自动化对象模型中的顶级对象。有关此功能,请参考 _DTE。不要从此类实例化。
命名空间: EnvDTE
程序集: EnvDTE(在 EnvDTE.dll 中)
语法
声明
<GuidAttribute("04A72314-32E9-48E2-9B87-A63603454F3E")> _
Public Interface _DTE
用法
Dim instance As _DTE
[GuidAttribute("04A72314-32E9-48E2-9B87-A63603454F3E")]
public interface _DTE
[GuidAttribute(L"04A72314-32E9-48E2-9B87-A63603454F3E")]
public interface class _DTE
public interface _DTE
备注
_DTE 对象由您在创建外接程序时所实现的 OnConnection 方法提供。_DTE 对象就是 Visual Basic 中的 Application 对象。
若要访问项目特定的属性(如 VBProjects 或 CSharpProjects),请使用语法 DTE.GetObject("VBProjects")。
有关引用 EnvDTE 命名空间和 _DTE 对象的详细信息,请参见 如何:获取对 DTE 和 DTE2 对象的引用。
示例
Sub DTEExample()
Dim objTextDoc As TextDocument
Dim objEP As EditPoint
'Create a new text document.
DTE.ItemOperations.NewFile("General\Text File")
'Get a handle to the new document.
Set objTextDoc = DTE.ActiveDocument.Object("TextDocument")
Set objEP = objTextDoc.StartPoint.CreateEditPoint
'Create an EditPoint and add some text.
objEP.Insert "A test sentence."
End Sub