Condividi tramite


Metodo Strokes.Contains

Aggiornamento: novembre 2007

Indica se l'insieme Strokes contiene un oggetto Stroke specificato.

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

Sintassi

'Dichiarazione
Public Function Contains ( _
    s As Stroke _
) As Boolean
'Utilizzo
Dim instance As Strokes
Dim s As Stroke
Dim returnValue As Boolean

returnValue = instance.Contains(s)
public bool Contains(
    Stroke s
)
public:
bool Contains(
    Stroke^ s
)
public boolean Contains(
    Stroke s
)
public function Contains(
    s : Stroke
) : boolean

Parametri

Valore restituito

Tipo: System.Boolean
Se l'insieme Strokes contiene un oggetto Stroke specificato.

Valore

Significato

true

L'insieme Strokes contiene l'oggetto Stroke specificato.

false

L'insieme Strokes non contiene l'oggetto Stroke specificato.

Note

Il comportamento di questo metodo non è definito se l'oggetto Ink padre per l'insieme Strokes è diverso dall'oggetto Ink padre per l'oggetto Stroke.

Esempi

In questo esempio, il metodo Contains viene utilizzato per determinare se un particolare oggetto Stroke è membro dell'insieme Strokes. In questo caso, Stroke viene impostato sul colore rosso.

' Access to the Strokes property returns a copy of the Strokes object.
' This copy must be implicitly (via using statement) or explicitly
' disposed of in order to avoid a memory leak.
Using allStrokes As Strokes = mInkOverlay.Ink.Strokes
    If allStrokes.Contains(specialStroke) Then
        specialStroke.DrawingAttributes.Color = Color.Red
    End If
End Using
// Access to the Strokes property returns a copy of the Strokes object.
// This copy must be implicitly (via using statement) or explicitly
// disposed of in order to avoid a memory leak.
using (Strokes allStrokes = mInkOverlay.Ink.Strokes)
{
    if (allStrokes.Contains(specialStroke))
    {
        specialStroke.DrawingAttributes.Color = Color.Red;
    }
}

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

Strokes Classe

Membri Strokes

Spazio dei nomi Microsoft.Ink

Stroke