Search
Diagram.AllowSplitLinks Property
See Also
 






Gets or sets a value indicating whether arrow segments can be added and removed interactively.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public bool AllowSplitLinks { get; set; }

Visual Basic  Copy Code

Public Property AllowSplitLinks As Boolean

 Property Value

true if interactive adding/removing of link segments allowed; false if not.

 Remarks

Allows users insert new link segments interactively by clicking and dragging a point of a link's segment. For polyline-style link this creates one additional segment by splitting the existing one into two parts. For cascading links there are two segments inserted, keeping intact the alternating pattern of horizontal and vertical segments, each orthogonal to its neighbors. Bézier-style links cannot be split in the current MindFusion.Diagramming for .NET MAUI version.

Segments can be merged by moving their joining point until the angle between reaches certain threshold value. In case of cascading-style links, segments can be merged by placing adjacent control points close one to the other, as set in MergeThreshold.

This property also affects how users can change the orientation of cascading links. For more details see CascadeOrientation.

 See Also