ContextNodeBaseCollection.Contains-Methode (ContextNodeBase)
Gibt an, ob die ContextNodeBaseCollection ein bestimmtes ContextNodeBase-Objekt enthält.
Namespace: System.Windows.Ink.AnalysisCore
Assembly: IACore (in IACore.dll)
Syntax
'Declaration
Public Function Contains ( _
node As ContextNodeBase _
) As Boolean
'Usage
Dim instance As ContextNodeBaseCollection
Dim node As ContextNodeBase
Dim returnValue As Boolean
returnValue = instance.Contains(node)
public bool Contains(
ContextNodeBase node
)
public:
bool Contains(
ContextNodeBase^ node
)
public boolean Contains(
ContextNodeBase node
)
public function Contains(
node : ContextNodeBase
) : boolean
Parameter
- node
Typ: System.Windows.Ink.AnalysisCore.ContextNodeBase
Das ContextNodeBase-Objekt, nach dem gesucht werden soll.
Rückgabewert
Typ: System.Boolean
Ein boolescher Wert, der angibt, ob die ContextNodeBaseCollection ein bestimmtes ContextNodeBase-Objekt enthält.
Beispiele
Im folgenden Beispiel wird veranschaulicht, wie Sie überprüfen, ob ein bestimmter ContextNodeBase mit dem Namen myNode in einer ContextNodeBaseCollection mit dem Namen nodes enthalten ist.
If nodes.Contains(myNode) Then
MessageBox.Show("The node is in the collection.")
End If
if (nodes.Contains(myNode))
MessageBox.Show("The node is in the collection.");
Plattformen
Windows Vista, Windows XP SP2, Windows Server 2003
.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
Siehe auch
Referenz
ContextNodeBaseCollection-Klasse