3 writes to cumulativeWheelData
System.Windows.Forms (3)
winforms\Managed\System\WinForms\TrackBar.cs (3)
991this.cumulativeWheelData += e.Delta; 1008this.cumulativeWheelData -= (int)((float)scrollBands * ((float)NativeMethods.WHEEL_DELTA / (float)wheelScrollLines)); 1013this.cumulativeWheelData -= (int)((float)scrollBands * ((float)NativeMethods.WHEEL_DELTA / (float)wheelScrollLines));
3 references to cumulativeWheelData
System.Windows.Forms (3)
winforms\Managed\System\WinForms\TrackBar.cs (3)
989Debug.Assert(this.cumulativeWheelData > -NativeMethods.WHEEL_DELTA, "cumulativeWheelData is too small"); 990Debug.Assert(this.cumulativeWheelData < NativeMethods.WHEEL_DELTA, "cumulativeWheelData is too big"); 994partialNotches = (float)this.cumulativeWheelData / (float)NativeMethods.WHEEL_DELTA;