Freigeben über


ContextLinkCollection.Add-Methode

Fügt der ContextLinkCollection ein neues ContextLink-Objekt hinzu und gibt den Zielknoten und seine Richtung an.

Namespace:  System.Windows.Ink
Assembly:  IAWinFX (in IAWinFX.dll)

Syntax

'Declaration
Public Function Add ( _
    destinationNode As ContextNode, _
    linkDirection As ContextLinkDirection _
) As ContextLink
'Usage
Dim instance As ContextLinkCollection
Dim destinationNode As ContextNode
Dim linkDirection As ContextLinkDirection
Dim returnValue As ContextLink

returnValue = instance.Add(destinationNode, _
    linkDirection)
public ContextLink Add(
    ContextNode destinationNode,
    ContextLinkDirection linkDirection
)
public:
ContextLink^ Add(
    ContextNode^ destinationNode, 
    ContextLinkDirection linkDirection
)
public ContextLink Add(
    ContextNode destinationNode,
    ContextLinkDirection linkDirection
)
public function Add(
    destinationNode : ContextNode, 
    linkDirection : ContextLinkDirection
) : ContextLink

Parameter

Rückgabewert

Typ: System.Windows.Ink.ContextLink
Das neue ContextLink-Objekt.

Hinweise

Ein ContextLink-Objekt wird ebenfalls zur Links-Eigenschaft des DestinationNode-Objekts hinzugefügt.

Beispiele

Im folgenden Beispiel wird ein Link zwischen einem InkDrawingNode-Objekt namens drawing und einem InkWordNode-Objekt namens word hinzugefügt.

drawing.Links.Add(word, ContextLinkDirection.LinksWith)
drawing.Links.Add(word, ContextLinkDirection.LinksWith);

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