GoDigram for .NET Framework and .NET Core
Northwoods.Go.Instruments Namespace / Indicator Class / OnActionAdjusted Method
the Northwoods.Go.GoView that the input event occurred in
the Northwoods.Go.GoInputEventArgs describing the input event
In This Topic
    OnActionAdjusted Method (Indicator)
    In This Topic
    This method is called by Northwoods.Go.GoToolAction as the user is adjusting the object, normally by a mouse drag.
    Syntax
    public virtual void OnActionAdjusted( 
       GoView view,
       GoInputEventArgs e
    )

    Parameters

    view
    the Northwoods.Go.GoView that the input event occurred in
    e
    the Northwoods.Go.GoInputEventArgs describing the input event
    Remarks
    By default this just sets the Value according to the current input point. This calls GetValueForPoint to determine the indicator's new value for the current mouse point. This will get called repeatedly as the user drags the mouse around. When setting the Value, this method temporarily sets Northwoods.Go.GoObject.SkipsUndoManager to true.
    See Also