ContextLink.DestinationNode 屬性
取得 ContextNode 物件,這個物件是目前 ContextLink 物件的目的物件。
命名空間: System.Windows.Ink
組件: IAWinFX (在 IAWinFX.dll 中)
語法
'宣告
Public ReadOnly Property DestinationNode As ContextNode
'用途
Dim instance As ContextLink
Dim value As ContextNode
value = instance.DestinationNode
public ContextNode DestinationNode { get; }
public:
property ContextNode^ DestinationNode {
ContextNode^ get ();
}
/** @property */
public ContextNode get_DestinationNode()
public function get DestinationNode () : ContextNode
屬性值
型別:System.Windows.Ink.ContextNode
ContextNode 物件,表示這個 ContextLink 物件的目的物件。
範例
下列範例會尋找所有連結至 ContextNode (名為 selectedNode) 的節點。如果 selectedNode 不是目的節點,則會將目的節點加入至名為 destinationNodes 的 ArrayList。如果 selectedNode 不是來源節點,則會將來源節點加入至名為 sourceNodes 的 ArrayList。
Dim destinationNodes As New ArrayList()
Dim sourceNodes As New ArrayList()
' Find all the nodes that link to the currently selected node.
Dim link As ContextLink
For Each link 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 link
ArrayList destinationNodes = new ArrayList();
ArrayList sourceNodes = new ArrayList();
// Find all the nodes that link to the currently selected node.
foreach (ContextLink link in selectedNode.Links)
{
if (link.DestinationNode != selectedNode)
{
destinationNodes.Add(link.DestinationNode);
}
if (link.SourceNode != selectedNode)
{
sourceNodes.Add(link.SourceNode);
}
}
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求。
版本資訊
.NET Framework
支援版本:3.0