3 writes to wheelDelta
System.Windows.Forms (3)
winforms\Managed\System\WinForms\UpDownBase.cs (3)
1007this.wheelDelta += e.Delta; 1026this.wheelDelta -= (int)((float)scrollBands * ((float)NativeMethods.WHEEL_DELTA / (float)wheelScrollLines)); 1034this.wheelDelta -= (int)((float)scrollBands * ((float)NativeMethods.WHEEL_DELTA / (float)wheelScrollLines));
3 references to wheelDelta
System.Windows.Forms (3)
winforms\Managed\System\WinForms\UpDownBase.cs (3)
1005Debug.Assert(this.wheelDelta > -NativeMethods.WHEEL_DELTA, "wheelDelta is too smal"); 1006Debug.Assert(this.wheelDelta < NativeMethods.WHEEL_DELTA, "wheelDelta is too big"); 1010partialNotches = (float)this.wheelDelta / (float)NativeMethods.WHEEL_DELTA;