CodeEvent.Attributes 属性

获取该代码事件元素的特性的 CodeElements 集合。

命名空间:  EnvDTE80
程序集:  EnvDTE80(在 EnvDTE80.dll 中)

语法

声明
ReadOnly Property Attributes As CodeElements
CodeElements Attributes { get; }
property CodeElements^ Attributes {
    CodeElements^ get ();
}
abstract Attributes : CodeElements with get
function get Attributes () : CodeElements

属性值

类型:CodeElements
一个 CodeElements 集合。

示例

下面的示例演示如何使用 Attributes 属性。

测试此属性:

  1. 打开目标项目并通过将光标放在事件对象上来选择代码事件元素。

  2. 将特性附加到代码事件元素。

  3. 运行外接程序。

public static void Attributes(EnvDTE80.DTE2 dte)
{
    TextSelection objTextSel;
    EnvDTE80.CodeEvent codeEvent;
    objTextSel = (TextSelection)dte.ActiveDocument.Selection;
    codeEvent = (EnvDTE80.CodeEvent)objTextSel.ActivePoint.get_CodeElement(vsCMElement.vsCMElementEvent);

    string str = "";
    foreach (CodeElement ce in codeEvent.Attributes)
        str += "\n" + ce.Name;
    MessageBox.Show("\nAttributes property: " +
                    str, "Testing CodeEvent");
}

.NET Framework 安全性

请参阅

参考

CodeEvent 接口

EnvDTE80 命名空间

其他资源

如何:编译和运行自动化对象模型代码示例

使用代码模型查找代码 (Visual Basic)

使用代码模型查找代码 (Visual C#)