7 writes to cumulativeVerticalWheelDelta
System.Windows.Forms (7)
winforms\Managed\System\WinForms\DataGridViewMethods.cs (7)
16933this.cumulativeVerticalWheelDelta += e.Delta; 16962this.cumulativeVerticalWheelDelta -= fullNotches * NativeMethods.WHEEL_DELTA; 16966this.cumulativeVerticalWheelDelta = 0; 17010this.cumulativeVerticalWheelDelta = 0; 17014this.cumulativeVerticalWheelDelta -= (int) ((float) scrollBands * ((float) NativeMethods.WHEEL_DELTA / (float) wheelScrollLines)); 17035this.cumulativeVerticalWheelDelta = 0; 17039this.cumulativeVerticalWheelDelta -= (int) ((float) scrollBands * ((float) NativeMethods.WHEEL_DELTA / (float) wheelScrollLines));
3 references to cumulativeVerticalWheelDelta
System.Windows.Forms (3)
winforms\Managed\System\WinForms\DataGridViewMethods.cs (3)
16924Debug.Assert(this.cumulativeVerticalWheelDelta > -NativeMethods.WHEEL_DELTA); 16925Debug.Assert(this.cumulativeVerticalWheelDelta < NativeMethods.WHEEL_DELTA); 16934partialNotches = (float) this.cumulativeVerticalWheelDelta / (float) NativeMethods.WHEEL_DELTA;