5 writes to cumulativeHorizontalWheelDelta
System.Windows.Forms (5)
winforms\Managed\System\WinForms\DataGridViewMethods.cs (5)
16938
this.
cumulativeHorizontalWheelDelta
+= e.Delta;
16975
this.
cumulativeHorizontalWheelDelta
-= fullNotches * NativeMethods.WHEEL_DELTA;
16979
this.
cumulativeHorizontalWheelDelta
= 0;
17064
this.
cumulativeHorizontalWheelDelta
= 0;
17068
this.
cumulativeHorizontalWheelDelta
-= (int) ((float) scrollBands * ((float) NativeMethods.WHEEL_DELTA / (float) wheelScrollLines));
3 references to cumulativeHorizontalWheelDelta
System.Windows.Forms (3)
winforms\Managed\System\WinForms\DataGridViewMethods.cs (3)
16926
Debug.Assert(this.
cumulativeHorizontalWheelDelta
> -NativeMethods.WHEEL_DELTA);
16927
Debug.Assert(this.
cumulativeHorizontalWheelDelta
< NativeMethods.WHEEL_DELTA);
16939
partialNotches = (float) this.
cumulativeHorizontalWheelDelta
/ (float) NativeMethods.WHEEL_DELTA;