Interface ILayoutInfoIterationEventArgs<TVertex, TEdge>
Represents information on a layout algorithm iteration.
Inherited Members
Namespace: GraphShape.Algorithms.Layout
Assembly: GraphShape.dll
Syntax
public interface ILayoutInfoIterationEventArgs<TVertex, in TEdge> : ILayoutIterationEventArgs<TVertex> where TEdge : IEdge<TVertex>
Type Parameters
| Name | Description |
|---|---|
| TVertex | Vertex type. |
| TEdge | Edge type. |
Methods
| Improve this Doc View SourceGetEdgeInfo(TEdge)
Returns the extra layout information of the edge (or null).
Declaration
object GetEdgeInfo(TEdge edge)
Parameters
| Type | Name | Description |
|---|---|---|
| TEdge | edge |
Returns
| Type | Description |
|---|---|
| System.Object |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException |
|
GetVertexInfo(TVertex)
Returns the extra layout information of the vertex (or null).
Declaration
object GetVertexInfo(TVertex vertex)
Parameters
| Type | Name | Description |
|---|---|---|
| TVertex | vertex |
Returns
| Type | Description |
|---|---|
| System.Object |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException |
|