GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoToolResizing Class / DoResizing Method
A value of GoInputState.Start when called from Start, a value of GoInputState.Continue when called from DoMouseMove, and a value of GoInputState.Finish when called from DoMouseUp.
In This Topic
    DoResizing Method (GoToolResizing)
    In This Topic
    This is called while the user is dragging the mouse and when the user releases the mouse.
    Syntax
    public virtual void DoResizing( 
       GoInputState evttype
    )

    Parameters

    evttype
    A value of GoInputState.Start when called from Start, a value of GoInputState.Continue when called from DoMouseMove, and a value of GoInputState.Finish when called from DoMouseUp.
    Remarks
    Basically this just calls DoResize on the CurrentObject. Objects are responsible for their own resize behavior. However, this calls GoView.SnapPoint to adjust the input event point to make sure the current resize point is a valid one according to whatever grids there are.
    See Also