Freigeben über


ContextLinkCollection.Contains-Methode

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

Namespace:  System.Windows.Ink
Assembly:  IAWinFX (in IAWinFX.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
Ein boolescher Wert, der angibt, ob die ContextLinkCollection das bestimmte ContextLink-Objekt enthält.

Beispiele

Im folgenden Beispiel wird veranschaulicht, wie Sie ermitteln, ob ein bestimmter ContextLink mit dem Namen myLink in einer ContextLinkCollection mit dem Namen 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

System.Windows.Ink-Namespace