3 writes to cumulativeWheelData
System.Windows.Forms (3)
winforms\Managed\System\WinForms\TrackBar.cs (3)
991
this.
cumulativeWheelData
+= e.Delta;
1008
this.
cumulativeWheelData
-= (int)((float)scrollBands * ((float)NativeMethods.WHEEL_DELTA / (float)wheelScrollLines));
1013
this.
cumulativeWheelData
-= (int)((float)scrollBands * ((float)NativeMethods.WHEEL_DELTA / (float)wheelScrollLines));
3 references to cumulativeWheelData
System.Windows.Forms (3)
winforms\Managed\System\WinForms\TrackBar.cs (3)
989
Debug.Assert(this.
cumulativeWheelData
> -NativeMethods.WHEEL_DELTA, "cumulativeWheelData is too small");
990
Debug.Assert(this.
cumulativeWheelData
< NativeMethods.WHEEL_DELTA, "cumulativeWheelData is too big");
994
partialNotches = (float)this.
cumulativeWheelData
/ (float)NativeMethods.WHEEL_DELTA;