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

DraggedTranslation() public method

Initializes a new instance of the class.
public DraggedTranslation ( Point mouseDownLocation, Point mouseDownLocationScreen, Double mouseDownTranslateX, Double mouseDownTranslateY ) : System
mouseDownLocation Point /// Location where the graph was clicked, in client coordinates. ///
mouseDownLocationScreen Point /// Location where the graph was clicked, in screen coordinates. ///
mouseDownTranslateX Double /// x-axis translation when the mouse was clicked. ///
mouseDownTranslateY Double /// y-axis translation when the mouse was clicked. ///
return System
    public DraggedTranslation
    (
        Point mouseDownLocation,
        Point mouseDownLocationScreen,
        Double mouseDownTranslateX,
        Double mouseDownTranslateY
    )
    : base(mouseDownLocation)
    {
        m_oMouseDownLocationScreen = mouseDownLocationScreen;
        m_dMouseDownTranslateX = mouseDownTranslateX;
        m_dMouseDownTranslateY = mouseDownTranslateY;

        AssertValid();
    }