Condividi tramite


Metodo CustomStrokes.Remove

Aggiornamento: novembre 2007

Rimuove un insieme Strokes da un insieme CustomStrokes.

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

Sintassi

'Dichiarazione
Public Sub Remove ( _
    s As String _
)
'Utilizzo
Dim instance As CustomStrokes
Dim s As String

instance.Remove(s)
public void Remove(
    string s
)
public:
void Remove(
    String^ s
)
public void Remove(
    String s
)
public function Remove(
    s : String
)

Parametri

Note

Lo stesso insieme Strokes aggiunto con il parametro s viene rimosso quando questo metodo viene chiamato.

Gli insiemi CustomStrokes sono insiemi di riferimenti ai dati dell'input penna e non i dati effettivi stessi. Questo metodo rimuove solo l'insieme Strokes da uno snapshot dei dati dell'input penna o da un riferimento a essi, non dai dati dell'input penna effettivi. Per eliminare l'insieme dai dati dell'input penna effettivi, chiamare il metodo Ink.DeleteStrokes.

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

Esempi

In questo esempio, viene rimosso l'insieme Strokes presente con il nome specificato all'interno di un insieme CustomStrokes. Se non esiste un insieme Strokes con il nome specificato, viene generata un'eccezione.

Private Sub RemoveCustomStrokes(ByVal mName As String, ByVal mInk As Ink)
    Try
        ' if the name does not exist, an exception will be raised
        mInk.CustomStrokes.Remove(mName)
    Catch E As ArgumentException
        ' this exception is raised when the named collection does not exist
    End Try

End Sub
private void RemoveCustomStrokes(string mName, Ink mInk)
{
    try
    {
        // if the name does not exist, an exception will be raised
        mInk.CustomStrokes.Remove(mName);
    }
    catch (ArgumentException)
    {
        // this exception is raised when the named collection does not exist
    }

}

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

Ink.DeleteStrokes

Ink