مشاركة عبر


CodeEvent.Attributes الخاصية

Gets a CodeElements مجموعة of السمات for this تعليمات برمجية حدث عنصر.

مساحة الاسم:  EnvDTE80
التجميع:  EnvDTE80 (في EnvDTE80.dll)

بناء الجملة

'إقرار
ReadOnly Property Attributes As CodeElements
    Get
CodeElements Attributes { get; }
property CodeElements^ Attributes {
    CodeElements^ get ();
}
abstract Attributes : CodeElements
function get Attributes () : CodeElements

قيمة الخاصية

النوع: EnvDTE.CodeElements
CodeElementsمجموعة.

أمثلة

يوضح المثال التالي كيفية إلى تستخدم في Attributesخاصية.

إلى اختبار هذه خاصية:

  1. فتح the الهدف مشروع و تحديد the تعليمات برمجية حدث عنصر بواسطة placing the المؤشر تشغيل the حدث كائن.

  2. يرفق the السمات إلى the تعليمات برمجية حدث عنصر.

  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 واجهة

CodeEvent الأعضاء

EnvDTE80 مساحة الاسم

موارد أخرى

كيفية: الترجمة وإعادة تشغيل أمثلة التعليمات البرمجية لطراز كائن التنفيذ التلقائي

اكتشاف التعليمات البرمجية باستخدام "نموذج التعليمات البرمجية" (Visual Basic)

اكتشاف التعليمات البرمجية باستخدام "نموذج التعليمات البرمجية" (Visual C#)