Freigeben über


ContextNodeBaseCollection.Contains-Methode (Guid)

Ein boolescher Wert, der anhand des Bezeichners angibt, ob die ContextNodeBaseCollection ein bestimmtes ContextNodeBase-Objekt enthält.

Namespace:  System.Windows.Ink.AnalysisCore
Assembly:  IACore (in IACore.dll)

Syntax

'Declaration
Public Function Contains ( _
    nodeId As Guid _
) As Boolean
'Usage
Dim instance As ContextNodeBaseCollection
Dim nodeId As Guid
Dim returnValue As Boolean

returnValue = instance.Contains(nodeId)
public bool Contains(
    Guid nodeId
)
public:
bool Contains(
    Guid nodeId
)
public boolean Contains(
    Guid nodeId
)
public function Contains(
    nodeId : Guid
) : boolean

Parameter

Rückgabewert

Typ: System.Boolean
Ein boolescher Wert, der angibt, ob die ContextNodeBaseCollection das bestimmte 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.Id) Then
    MessageBox.Show("The node is in the collection.")
End If
            if (nodes.Contains(myNode.Id))
                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

ContextNodeBaseCollection-Member

Contains-Überladung

System.Windows.Ink.AnalysisCore-Namespace