Enum CycleMode
This enumeration specifies how the Diagram should handle cycles in graphs. Used for ValidCycle.
Namespace: Northwoods.Go
Assembly: Northwoods.GoDiagram.Avalonia.dll
Syntax
public enum CycleMode
Fields
Name | Description |
---|---|
All | This value states that there are no restrictions on making cycles of links. |
DestinationTree | This value states that any number of destination links may go out of a node, but at most one source link may come into a node, and there are no directed cycles. |
NotDirected | This value states that a valid link from a node will not produce a directed cycle in the graph. |
NotUndirected | This value states that a valid link from a node will not produce an undirected cycle in the graph. |
SourceTree | This value states that any number of source links may come into a node, but at most one destination link may go out of a node, and there are no directed cycles. |