EdgeTypeGetEdge Method (Int32, Vertex, Vertex) |
Get an edge for a given id
Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public Edge GetEdge(
int edgeId,
Vertex tailVertex,
Vertex headVertex
)
Public Function GetEdge (
edgeId As Integer,
tailVertex As Vertex,
headVertex As Vertex
) As Edge
public:
Edge^ GetEdge(
int edgeId,
Vertex^ tailVertex,
Vertex^ headVertex
)
member GetEdge :
edgeId : int *
tailVertex : Vertex *
headVertex : Vertex -> Edge
Parameters
- edgeId
- Type: SystemInt32
Id of edge - tailVertex
- Type: VelocityGraphVertex
the tail vertex of the edge - headVertex
- Type: VelocityGraphVertex
the head vertex of the edge
Return Value
Type:
Edge[Missing <returns> documentation for "M:VelocityGraph.EdgeType.GetEdge(System.Int32,VelocityGraph.Vertex,VelocityGraph.Vertex)"]
See Also