Interface ILayoutInfoIterationEventArgs<TVertex, TEdge, TVertexInfo, TEdgeInfo>
Represents information on a layout algorithm iteration.
Inherited Members
Namespace: GraphShape.Algorithms.Layout
Assembly: GraphShape.dll
Syntax
public interface ILayoutInfoIterationEventArgs<TVertex, TEdge, TVertexInfo, TEdgeInfo> : ILayoutInfoIterationEventArgs<TVertex, TEdge>, ILayoutIterationEventArgs<TVertex> where TEdge : IEdge<TVertex>
Type Parameters
Name | Description |
---|---|
TVertex | Vertex type. |
TEdge | Edge type. |
TVertexInfo | Vertex information type. |
TEdgeInfo | Edge information type. |
Properties
| Improve this Doc View SourceEdgesInfos
Extra edges information.
Declaration
IDictionary<TEdge, TEdgeInfo> EdgesInfos { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<TEdge, TEdgeInfo> |
VerticesInfos
Extra vertices information.
Declaration
IDictionary<TVertex, TVertexInfo> VerticesInfos { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<TVertex, TVertexInfo> |