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

EdgeDrawingHistory() public method

Initializes a new instance of the EdgeDrawingHistory class.
public EdgeDrawingHistory ( IEdge edge, System.Windows.Media.DrawingVisual drawingVisual, System.Boolean drawnAsSelected, Double width ) : System
edge IEdge /// The edge that was drawn. ///
drawingVisual System.Windows.Media.DrawingVisual /// The DrawingVisual object that was used to draw the edge. ///
drawnAsSelected System.Boolean /// true if the edge was drawn as selected. ///
width Double /// The width of , in WPF units. ///
return System
    public EdgeDrawingHistory
    (
        IEdge edge,
        DrawingVisual drawingVisual,
        Boolean drawnAsSelected,
        Double width
    )
    : base(drawingVisual, drawnAsSelected)
    {
        m_oEdge = edge;
        m_dWidth = width;

        // AssertValid();
    }