Interface IGraphLayout
Syntax
public interface IGraphLayout
Properties
edges
Declaration
IEnumerable<Edge> edges { get; }
Property Value
| Type |
Description |
| System.Collections.Generic.IEnumerable<Edge> |
|
leftToRight
Declaration
bool leftToRight { get; }
Property Value
| Type |
Description |
| System.Boolean |
|
vertices
Declaration
IEnumerable<Vertex> vertices { get; }
Property Value
| Type |
Description |
| System.Collections.Generic.IEnumerable<Vertex> |
|
Methods
CalculateLayout(Graph)
Declaration
void CalculateLayout(Graph graph)
Parameters
| Type |
Name |
Description |
| Graph |
graph |
|