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