| SubGraphViewTVertex, TEdgeHandleEdgeAddedToMainGraph Method  | 
 
            Handles the event that a new edge 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)
Syntaxprotected virtual void HandleEdgeAddedToMainGraph(
	TEdge edgeAdded
)
Protected Overridable Sub HandleEdgeAddedToMainGraph ( 
	edgeAdded As TEdge
)
Parameters
- edgeAdded
 - Type: TEdge
The edge added. 
RemarksBy default, this routine does nothing. If you want to add this edge to this SubGraphView, you've to add it by calling Add
            in a derived class, overriding this method.
See Also