Interface IGraphNode
Interface to a node in a graph.
Namespace: Syncfusion.Windows.Forms.Diagram
Assembly: Syncfusion.Diagram.Base.dll
Syntax
public interface IGraphNode
Remarks
A node is an object in a graph that can have edges entering and leaving. Nodes are connected to other nodes by edges. IGraphEdge
Properties
Edges
Gets collection of all edges entering or leaving the node.
Declaration
ICollection Edges { get; }
Property Value
Type |
---|
System.Collections.ICollection |
EdgesEntering
Gets collection of edges entering the node.
Declaration
ICollection EdgesEntering { get; }
Property Value
Type |
---|
System.Collections.ICollection |
EdgesLeaving
Gets collection of edges leaving the node.
Declaration
ICollection EdgesLeaving { get; }
Property Value
Type |
---|
System.Collections.ICollection |