Condividi tramite


Metodo FontsAndColorsItems.Item

Restituisce un oggetto ColorableItems all'interno di un insieme FontsAndColorsItems.

Spazio dei nomi:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Sintassi

'Dichiarazione
Function Item ( _
    index As Object _
) As ColorableItems
ColorableItems Item(
    Object index
)
ColorableItems^ Item(
    [InAttribute] Object^ index
)
abstract Item : 
        index:Object -> ColorableItems 
function Item(
    index : Object
) : ColorableItems

Parametri

Valore restituito

Tipo: EnvDTE.ColorableItems
Un oggetto ColorableItems.

Note

Il valore passato a Index è un intero che costituisce l'indice per un oggetto ColorableItems nel relativo insieme FontsAndColorsItems o il valore di una stringa che corrisponde all'oggetto ColorableItems all'interno dell'insieme.

Il metodo Item genera un'eccezione ArgumentException se l'insieme non riesce a trovare l'oggetto che corrisponde al valore di indice.

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

Vedere anche

Riferimenti

FontsAndColorsItems Interfaccia

Spazio dei nomi EnvDTE

Altre risorse

Procedura: compilare ed eseguire gli esempi di codice del modello a oggetti di automazione