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

MouseDragWithVisual() public method

Initializes a new instance of the MouseDragWithVisual class.
public MouseDragWithVisual ( Point mouseDownLocation, Rect graphRectangle, Int32 margin ) : System
mouseDownLocation Point /// Location where the graph was clicked, in client coordinates. ///
graphRectangle System.Windows.Rect /// The graph rectangle. ///
margin System.Int32 /// The graph margin. ///
return System
    public MouseDragWithVisual
    (
        Point mouseDownLocation,
        Rect graphRectangle,
        Int32 margin
    )
    : base(mouseDownLocation)
    {
        m_oGraphRectangle = graphRectangle;
        m_iMargin = margin;
        m_oVisual = null;

        // AssertValid();
    }