Condividi tramite


Proprietà Ink.CustomStrokes

Aggiornamento: novembre 2007

Ottiene l'insieme CustomStrokes da salvare in modo permanente con l'input penna.

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

Sintassi

'Dichiarazione
Public ReadOnly Property CustomStrokes As CustomStrokes
'Utilizzo
Dim instance As Ink
Dim value As CustomStrokes

value = instance.CustomStrokes
public CustomStrokes CustomStrokes { get; }
public:
property CustomStrokes^ CustomStrokes {
    CustomStrokes^ get ();
}
/** @property */
public CustomStrokes get_CustomStrokes()
public function get CustomStrokes () : CustomStrokes

Valore proprietà

Tipo: Microsoft.Ink.CustomStrokes
Insieme CustomStrokes da salvare in modo permanente con l'input penna.

Esempi

In questo esempio, l'insieme Strokes dell'oggetto Ink passato viene aggiunto all'insieme CustomStrokes dello stesso oggetto Ink passato utilizzando il nome specificato. Se l'insieme CustomStrokes denominato già esiste, viene generata un'eccezione.

Private Sub AddCustomStrokes(ByVal mName As String, ByVal mInk As Ink)
    Try
        ' if the name already exists, an exception will be raised
        mInk.CustomStrokes.Add(mName, mInk.Strokes)
    Catch E As ArgumentException
        ' this exception is raised when the named collection already exists
    End Try
End Sub
private void AddCustomStrokes(string mName, Ink mInk)
{
    try
    {
        // if the name already exists, an exception will be raised
        mInk.CustomStrokes.Add(mName, mInk.Strokes);
    }
    catch (ArgumentException)
    {
        // this exception is raised when the named collection already exists
    }
}

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

Ink Classe

Membri Ink

Spazio dei nomi Microsoft.Ink

CustomStrokes

Strokes