Strokes.Contains-Methode
Gibt an, ob die Strokes-Auflistung ein bestimmtes Stroke-Objekt enthält.
Namespace: Microsoft.Ink
Assembly: Microsoft.Ink (in Microsoft.Ink.dll)
Syntax
'Declaration
Public Function Contains ( _
s As Stroke _
) As Boolean
'Usage
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
Parameter
- s
Typ: Microsoft.Ink.Stroke
Rückgabewert
Typ: System.Boolean
Gibt an, ob die Strokes-Auflistung ein bestimmtes Stroke-Objekt enthält.
Wert |
Bedeutung |
---|---|
true |
Die Strokes-Auflistung enthält das betreffende Stroke-Objekt. |
false |
Die Strokes-Auflistung enthält das betreffende Stroke-Objekt nicht. |
Hinweise
Das Verhalten dieser Methode ist nicht definiert, wenn das übergeordnete Ink-Objekt für die Strokes-Auflistung nicht mit dem übergeordneten Ink-Objekt des Stroke-Objekts übereinstimmt.
Beispiele
In diesem Beispiel wird die Contains-Methode verwendet, um zu bestimmen, ob ein bestimmtes Stroke-Objekt ein Member der Strokes-Auflistung ist. Wenn dies der Fall ist, wird die Farbe von Stroke auf Rot festgelegt.
' 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;
}
}
Plattformen
Windows Vista
.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.
Versionsinformationen
.NET Framework
Unterstützt in: 3.0