VertexGetEdges Method (EdgeType, Direction) |
Selects all edges from or to this vertex and for the given edge type.
Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public IEnumerable<IEdge> GetEdges(
EdgeType edgeType,
Direction dir
)
Public Function GetEdges (
edgeType As EdgeType,
dir As Direction
) As IEnumerable(Of IEdge)
public:
IEnumerable<IEdge^>^ GetEdges(
EdgeType^ edgeType,
Direction dir
)
member GetEdges :
edgeType : EdgeType *
dir : Direction -> IEnumerable<IEdge>
Parameters
- edgeType
- Type: VelocityGraphEdgeType
the id of an EdgeType - dir
- Type: VelocityGraph.Frontenac.BlueprintsDirection
direction, one of: Out, In, Both
Return Value
Type:
IEnumerableIEdgea set of Edge
See Also