Remove the provided vertex from the graph.
Upon removing the vertex, all the edges by which the vertex is connected must be removed as well.
Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 8.2.1.0 (8.2.1)
Syntaxpublic void RemoveVertex(
IVertex vertex
)
Public Sub RemoveVertex (
vertex As IVertex
)
public:
virtual void RemoveVertex(
IVertex^ vertex
) sealed
abstract RemoveVertex :
vertex : IVertex -> unit
override RemoveVertex :
vertex : IVertex -> unit
Parameters
- vertex
- Type: IVertex
the vertex to remove from the graph
Implements
IGraph.RemoveVertex(IVertex)
See Also