Search
RoutingOptions.Anchoring Property
See Also
 





Gets or sets a value indicating whether to align link ends to the anchor points of nodes.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public Anchoring Anchoring { get; set; }

Visual Basic  Copy Code

Public Property Anchoring As Anchoring

 Property Value

A member of the Anchoring enumeration. The default is Ignore.

 Remarks

By default, the routing algorithm ignores anchor points. To make it align link ends to the points specified in the AnchorPattern property of nodes, set Anchoring to Keep or Reassign. Keep specifies that the routing algorithm does not change the positions of link end points. Reassign lets the routing algorithm choose new end points for a link from the ones specified in the AnchorPattern of its origin and destination nodes.

 See Also