Condividi tramite


Metodo CustomStrokes.Add

Aggiornamento: novembre 2007

Aggiunge un insieme Strokes all'insieme CustomStrokes.

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

Sintassi

'Dichiarazione
Public Sub Add ( _
    name As String, _
    strokes As Strokes _
)
'Utilizzo
Dim instance As CustomStrokes
Dim name As String
Dim strokes As Strokes

instance.Add(name, strokes)
public void Add(
    string name,
    Strokes strokes
)
public:
void Add(
    String^ name, 
    Strokes^ strokes
)
public void Add(
    String name,
    Strokes strokes
)
public function Add(
    name : String, 
    strokes : Strokes
)

Parametri

Note

Nota

Se si chiama questo metodo con il parametro name impostato su un nome già presente nell'insieme CustomStrokes, viene generata un'eccezione.

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à presente, 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

CustomStrokes Classe

Membri CustomStrokes

Spazio dei nomi Microsoft.Ink

Strokes

Ink