Proprietà FontsAndColorsItems.Count
Ottiene un valore che indica il numero di oggetti nell'insieme FontsAndColorsItems.
Spazio dei nomi: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Sintassi
'Dichiarazione
ReadOnly Property Count As Integer
Get
int Count { get; }
property int Count {
int get ();
}
abstract Count : int
function get Count () : int
Valore proprietà
Tipo: System.Int32
Valore integer che indica il numero di oggetti nell'insieme FontsAndColorsItems.
Esempi
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);
}
}
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.
Vedere anche
Riferimenti
FontsAndColorsItems Interfaccia
Altre risorse
Procedura: compilare ed eseguire gli esempi di codice del modello a oggetti di automazione