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