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.3.3.0 (1.3.18.0209)
Syntaxprotected virtual void HandleVertexAddedToMainGraph(
	TVertex vertexAdded
)
Protected Overridable Sub HandleVertexAddedToMainGraph ( 
	vertexAdded As TVertex
)
Parameters
- vertexAdded
 - Type: TVertex
The vertex added. 
RemarksBy 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