Condividi tramite


Proprietà ContextLink.SourceNode

Aggiornamento: novembre 2007

Ottiene l'oggetto ContextNode che rappresenta l'origine di questo oggetto ContextLink.

Spazio dei nomi:  Microsoft.Ink
Assembly:  Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)

Sintassi

'Dichiarazione
Public ReadOnly Property SourceNode As ContextNode
'Utilizzo
Dim instance As ContextLink
Dim value As ContextNode

value = instance.SourceNode
public ContextNode SourceNode { get; }
public:
property ContextNode^ SourceNode {
    ContextNode^ get ();
}
/** @property */
public ContextNode get_SourceNode()
public function get SourceNode () : ContextNode

Valore proprietà

Tipo: Microsoft.Ink.ContextNode
Oggetto ContextNode che rappresenta l'origine di questo oggetto ContextLink.

Esempi

Nell'esempio seguente vengono individuati tutti i nodi collegati al nodo ContextNode, selectedNode. Se l'oggetto selectedNode non è un nodo di destinazione, quest'ultimo viene aggiunto a un oggetto ArrayList, destinationNodes. Se l'oggetto selectedNode non è il nodo di origine, viene aggiunto a un oggetto ArrayList, sourceNodes.

Dim destinationNodes As ArrayList = New ArrayList()
Dim sourceNodes As ArrayList = New ArrayList()

' Find all the nodes that link to the currently selected node.
For Each link As Microsoft.Ink.ContextLink In selectedNode.Links
    If link.DestinationNode <> selectedNode Then
        destinationNodes.Add(link.DestinationNode)
    End If

    If link.SourceNode <> selectedNode Then
        sourceNodes.Add(link.SourceNode)
    End If
Next
ArrayList destinationNodes = new ArrayList();
ArrayList sourceNodes = new ArrayList();

// Find all the nodes that link to the currently selected node.
foreach (Microsoft.Ink.ContextLink link in selectedNode.Links)
{
    if (link.DestinationNode != selectedNode)
    {
        destinationNodes.Add(link.DestinationNode);
    }

    if (link.SourceNode != selectedNode)
    {
        sourceNodes.Add(link.SourceNode);
    }

}

Piattaforme

Windows Vista

.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.

Informazioni sulla versione

.NET Framework

Supportato in: 3.0

Vedere anche

Riferimenti

ContextLink Classe

Membri ContextLink

Spazio dei nomi Microsoft.Ink

ContextLink.DestinationNode