Click or drag to resize

GraphEdges Method

Enumerates all the edges of the given type between two given nodes (tail and head).

Namespace:  VelocityGraph
Assembly:  VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax
public IEnumerable<IEdge> Edges(
	EdgeType etype,
	Vertex tail,
	Vertex head
)

Parameters

etype
Type: VelocityGraphEdgeType
Type of Edge
tail
Type: VelocityGraphVertex
Outgoing Vertex
head
Type: VelocityGraphVertex
Incoming Vertex

Return Value

Type: IEnumerableIEdge
Enumeration of Edge
See Also