Smrf.NodeXL.Visualization.Wpf.VertexDrawingHistory.VertexDrawingHistory C# (CSharp) Method

VertexDrawingHistory() public method

Initializes a new instance of the VertexDrawingHistory class.
public VertexDrawingHistory ( IVertex vertex, System.Windows.Media.DrawingVisual drawingVisual, System.Boolean drawnAsSelected ) : System
vertex IVertex /// The vertex that was drawn. ///
drawingVisual System.Windows.Media.DrawingVisual /// The DrawingVisual object that was used to draw the vertex. ///
drawnAsSelected System.Boolean /// true if the vertex was drawn as selected. ///
return System
    public VertexDrawingHistory
    (
        IVertex vertex,
        DrawingVisual drawingVisual,
        Boolean drawnAsSelected
    )
    : base(drawingVisual, drawnAsSelected)
    {
        m_oVertex = vertex;

        // AssertValid();
    }