SubGraphViewTVertex, TEdgeHandleVertexAddedToMainGraph Method |
Handles the event that a new vertex was added to the main graph.
Namespace:
SD.Tools.Algorithmia.Graphs
Assembly:
SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.2.0.0 (1.2.16.0406)
Syntax protected virtual void HandleVertexAddedToMainGraph(
TVertex vertexAdded
)
Protected Overridable Sub HandleVertexAddedToMainGraph (
vertexAdded As TVertex
)
Parameters
- vertexAdded
- Type: TVertex
The vertex added.
Remarks By default, this routine does nothing. If you want to add this vertex to this SubGraphView, you've to add it by calling Add
in a derived class, overriding this method.
See Also