Class LinkTree.Edge
Represents an edge (relationship) between two nodes in the link tree.
public class LinkTree.Edge
- Inheritance
-
LinkTree.Edge
- Inherited Members
Properties
Arc
Gets the arc (relationship) associated with this edge.
public Arc Arc { get; init; }
Property Value
Child
Gets the child node of this edge.
public LinkTree.Node Child { get; init; }
Property Value
Parent
Gets the parent node of this edge.
public LinkTree.Node Parent { get; init; }
Property Value
Tree
Gets the link tree to which this edge belongs.
public LinkTree Tree { get; init; }