Freigeben über


ContextLinkCollection.Contains-Methode

Gibt an, ob die ContextLinkCollection ein bestimmtes ContextLink-Objekt enthält.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)

Syntax

'Declaration
Public Function Contains ( _
    link As ContextLink _
) As Boolean
'Usage
Dim instance As ContextLinkCollection
Dim link As ContextLink
Dim returnValue As Boolean

returnValue = instance.Contains(link)
public bool Contains(
    ContextLink link
)
public:
bool Contains(
    ContextLink^ link
)
public boolean Contains(
    ContextLink link
)
public function Contains(
    link : ContextLink
) : boolean

Parameter

Rückgabewert

Typ: System.Boolean
Gibt an, ob ContextLinkCollection das gesuchte ContextLink-Objekt enthält.

Beispiele

Im folgenden Beispiel wird veranschaulicht, wie Sie ermitteln können, ob das ContextLink-Objekt myLink in der ContextLinkCollection-Auflistung links enthalten ist.

If links.Contains(myLink) Then
    MessageBox.Show("The link is in the collection.")
End If
if (links.Contains(myLink))
{
    MessageBox.Show("The link is in the collection.");
}

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

Siehe auch

Referenz

ContextLinkCollection-Klasse

ContextLinkCollection-Member

Microsoft.Ink-Namespace