Freigeben über


ContextLinkCollection.Add-Methode

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

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.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: Microsoft.Ink.ContextLink
Das neue ContextLink-Objekt.

Hinweise

Der ContextNode, dem diese Auflistung zugeordnet ist, wird zum SourceNode in dem neuen ContextLink-Objekt.

Das ContextLink-Objekt wird auch zur Links-Eigenschaft des DestinationNode-Objekts hinzugefügt.

Beispiele

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

drawing.Links.Add(word, Microsoft.Ink.ContextLinkDirection.LinksWith)
drawing.Links.Add(word, Microsoft.Ink.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

Microsoft.Ink-Namespace