VertexTypeGetTopNumberOfEdges Method |
Get the top vertices with the most number of edges of the given edge type
Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public Vertex[] GetTopNumberOfEdges(
EdgeType etype,
int howMany,
Direction dir
)
Public Function GetTopNumberOfEdges (
etype As EdgeType,
howMany As Integer,
dir As Direction
) As Vertex()
public:
array<Vertex^>^ GetTopNumberOfEdges(
EdgeType^ etype,
int howMany,
Direction dir
)
member GetTopNumberOfEdges :
etype : EdgeType *
howMany : int *
dir : Direction -> Vertex[]
Parameters
- etype
- Type: VelocityGraphEdgeType
The edge type to look for - howMany
- Type: SystemInt32
How many top ones to collect - dir
- Type: VelocityGraph.Frontenac.BlueprintsDirection
What end of edges to look at
Return Value
Type:
VertexArray of Vertices with the most edges of the given edge type
See Also