5 writes to _cumulativeHorizontalWheelDelta
System.Windows.Forms (5)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (5)
16558
_cumulativeHorizontalWheelDelta
+= e.Delta;
16597
_cumulativeHorizontalWheelDelta
-= fullNotches * (int)PInvoke.WHEEL_DELTA;
16601
_cumulativeHorizontalWheelDelta
= 0;
16693
_cumulativeHorizontalWheelDelta
= 0;
16697
_cumulativeHorizontalWheelDelta
-= (int)(scrollBands * (PInvoke.WHEEL_DELTA / (float)wheelScrollLines));
3 references to _cumulativeHorizontalWheelDelta
System.Windows.Forms (3)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (3)
16546
Debug.Assert(
_cumulativeHorizontalWheelDelta
> -PInvoke.WHEEL_DELTA);
16547
Debug.Assert(
_cumulativeHorizontalWheelDelta
< PInvoke.WHEEL_DELTA);
16559
partialNotches =
_cumulativeHorizontalWheelDelta
/ (float)PInvoke.WHEEL_DELTA;