NPlot.Windows.PlotSurface2D.DoMouseWheel C# (CSharp) Method

DoMouseWheel() public method

All functionality of the OnMouseWheel function is containd here. This allows use of the all encompasing PlotSurface.
public DoMouseWheel ( MouseEventArgs e ) : void
e MouseEventArgs the event args.
return void
        public void DoMouseWheel(MouseEventArgs e)
        {
            bool dirty = false;
            foreach (Interactions.Interaction i in interactions_)
            {
                i.DoMouseWheel(e, this);
                dirty |= i.DoMouseWheel(e, this);
            }
            if (dirty)
            {
                Refresh();
            }
        }