Condividi tramite


Proprietà CustomStrokes.Item (String)

Aggiornamento: novembre 2007

Ottiene l'insieme Strokes con il nome specificato all'interno dell'insieme CustomStrokes.

Spazio dei nomi:  Microsoft.Ink
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Sintassi

'Dichiarazione
Public ReadOnly Property Item ( _
    name As String _
) As Strokes
'Utilizzo
Dim instance As CustomStrokes
Dim name As String
Dim value As Strokes

value = instance.Item(name)
public Strokes Item[
    string name
] { get; }
public:
property Strokes^ Item[String^ name] {
    Strokes^ get (String^ name);
}
/** @property */
public Strokes get_Item(
    String name
)
JScript non supporta le proprietà indicizzate.

Parametri

Valore proprietà

Tipo: Microsoft.Ink.Strokes
Insieme Strokes specificato all'interno dell'insieme CustomStrokes.

Note

Se il parametro name non corrisponde a un membro esistente dell'insieme CustomStrokes, viene generata un'eccezione System.ArgumentException.

Nota

In C# utilizzare l'indicizzatore dell'insieme come illustrato nell'esempio seguente, anziché la proprietà Item dell'insieme.

Esempi

In questo esempio, un metodo restituisce true se l'insieme CustomStrokes di un oggetto Ink contiene un insieme Strokes con il nome specificato. Se non esiste un insieme Strokes con il nome specificato, viene generata un'eccezione e il metodo restituisce false.

Private Function CustomStrokesCollectionExists(ByVal mName As String, ByVal mInk As Ink) As Boolean
    Try
        Dim S As Strokes = mInk.CustomStrokes(mName)
        ' In VB, you can also access the named collections by using the Item property:
        ' Dim S As Strokes = mInk.CustomStrokes.Item(mName)
        '
        ' if the previous statement did not raise an exception, 
        ' the named Strokes collection exists
        Return True

    Catch E As ArgumentException
        ' this exception is raised when the named collection does not exist

    Catch E As Exception
        ' in case another type of exception is raised

    End Try
    Return False
End Function
private bool CustomStrokesCollectionExists(string mName, Ink mInk)
{
    try
    {
        Strokes S = mInk.CustomStrokes[mName];
        // In C#, the Item property is not available. The following won't compile:
        // Strokes S = mInk.CustomStrokes.Item[mName];

        // if the previous statement did not throw an exception, 
        // the named Strokes collection exists
        return true;
    }
    catch (ArgumentException)
    {
        // this exception is raised when the named collection does not exist
    }
    catch (Exception)
    {
        // in case another type of exception is raised
    }
    return false;
}

Piattaforme

Windows Vista

.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.

Informazioni sulla versione

.NET Framework

Supportato in: 3.0

Vedere anche

Riferimenti

CustomStrokes Classe

Membri CustomStrokes

Overload Item

Spazio dei nomi Microsoft.Ink

Item

Strokes