5 writes to _cumulativeHorizontalWheelDelta
System.Windows.Forms (5)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (5)
16499
_cumulativeHorizontalWheelDelta
+= e.Delta;
16538
_cumulativeHorizontalWheelDelta
-= fullNotches * (int)PInvoke.WHEEL_DELTA;
16542
_cumulativeHorizontalWheelDelta
= 0;
16634
_cumulativeHorizontalWheelDelta
= 0;
16638
_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)
16487
Debug.Assert(
_cumulativeHorizontalWheelDelta
> -PInvoke.WHEEL_DELTA);
16488
Debug.Assert(
_cumulativeHorizontalWheelDelta
< PInvoke.WHEEL_DELTA);
16500
partialNotches =
_cumulativeHorizontalWheelDelta
/ (float)PInvoke.WHEEL_DELTA;