共用方式為


ContextNodeBase.Links 屬性

取得 ContextLinkBase 物件的集合,這些物件表示其他 ContextNodeBase 物件之間的關聯性 (Relationship)。

命名空間:  System.Windows.Ink.AnalysisCore
組件:  IACore (在 IACore.dll 中)

語法

'宣告
Public ReadOnly Property Links As ContextLinkBaseCollection
'用途
Dim instance As ContextNodeBase
Dim value As ContextLinkBaseCollection

value = instance.Links
public ContextLinkBaseCollection Links { get; }
public:
property ContextLinkBaseCollection^ Links {
    ContextLinkBaseCollection^ get ();
}
/** @property */
public ContextLinkBaseCollection get_Links()
public function get Links () : ContextLinkBaseCollection

屬性值

型別:System.Windows.Ink.AnalysisCore.ContextLinkBaseCollection
ContextLinkBase 物件的集合,這些物件表示其他 ContextNodeBase 物件之間的關聯性。

備註

如需連結所述之關聯性類型的詳細資訊,請參閱 ContextLinkBase 類別。

範例

下列範例會尋找所有連結至 ContextNodeBase 節點 (名為 selectedNode) 的節點。如果 selectedNode 不是目的節點,則會將目的節點加入至名為 destinationNodes 的 ArrayList。如果 selectedNode 不是來源節點,則會將它加入至名為 sourceNodes 的 ArrayList

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);
    }

}

平台

Windows Vista, Windows XP SP2, Windows Server 2003

.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求

版本資訊

.NET Framework

支援版本:3.0

請參閱

參考

ContextNodeBase 類別

ContextNodeBase 成員

System.Windows.Ink.AnalysisCore 命名空間

System.Windows.Ink.AnalysisCore.ContextLinkBase