مشاركة عبر


FontsAndColorsItems.Count الخاصية

الحصول على القيمة تشير إلى عدد الكائنات في FontsAndColorsItemsمجموعة.

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

بناء الجملة

'إقرار
ReadOnly Property Count As Integer
    Get
int Count { get; }
property int Count {
    int get ();
}
abstract Count : int
function get Count () : int

قيمة الخاصية

النوع: System.Int32
القيمة عدد صحيح يشير إلى عدد الكائنات في FontsAndColorsItemsمجموعة.

أمثلة

public void CodeExample(DTE2 dte, AddIn addin)
{   // Make sure you have an open solution
    try
    {
        Properties props;
        Property prop;
        FontsAndColorsItems fci;
        ColorableItems ci;
        string msg = "";
        props = dte.get_Properties("FontsAndColors", "TextEditor");
        prop = props.Item("FontsAndColorsItems");
        fci = (FontsAndColorsItems)prop.Object;
        ci = fci.Item(1);
        msg += "Count of ColorableItems in fci: " + fci.Count + "\n";
        msg += "The first ColorableItems object in fci is " + ci.Name;
        MessageBox.Show(msg);
    }
    catch(Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}

أمن NET Framework.

راجع أيضًَا

المرجع

FontsAndColorsItems واجهة

FontsAndColorsItems الأعضاء

EnvDTE مساحة الاسم

موارد أخرى

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