Search
DiagramNode.Obstacle Property
See Also
 





Gets or sets a value indicating whether this node is considered an obstacle by the link-routing algorithm.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public bool Obstacle { get; set; }

Visual Basic  Copy Code

Public Property Obstacle As Boolean

 Property Value

true makes routed links look for a path going around this node; false lets links cross the node. The default is true.

 Remarks

It is useful to set this property to false for nodes used as decorative containers or labels.

 See Also