VertexGetEdges Method (Direction, String) |
Return the edges incident to the vertex according to the provided direction and edge labels.
Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public IEnumerable<IEdge> GetEdges(
Direction direction,
params string[] labels
)
Public Function GetEdges (
direction As Direction,
ParamArray labels As String()
) As IEnumerable(Of IEdge)
public:
virtual IEnumerable<IEdge^>^ GetEdges(
Direction direction,
... array<String^>^ labels
) sealed
abstract GetEdges :
direction : Direction *
labels : string[] -> IEnumerable<IEdge>
override GetEdges :
direction : Direction *
labels : string[] -> IEnumerable<IEdge>
Parameters
- direction
- Type: VelocityGraph.Frontenac.BlueprintsDirection
the direction of the edges to retrieve - labels
- Type: SystemString
the labels of the edges to retrieve
Return Value
Type:
IEnumerableIEdgean IEnumerable of incident edges
Implements
IVertexGetEdges(Direction, String)See Also