10 writes to cumulativeVerticalWheelDelta
System.Windows.Forms (10)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (10)
3358cumulativeVerticalWheelDelta += me.Delta; 3375this.cumulativeVerticalWheelDelta -= fullNotches * NativeMethods.WHEEL_DELTA; 3378this.cumulativeVerticalWheelDelta = 0; 3382this.cumulativeVerticalWheelDelta = 0; 3406this.cumulativeVerticalWheelDelta = 0; 3409this.cumulativeVerticalWheelDelta -= (int)((float)scrollBands * ((float)NativeMethods.WHEEL_DELTA / (float)wheelScrollLines)); 3415this.cumulativeVerticalWheelDelta = 0; 3418this.cumulativeVerticalWheelDelta -= (int)((float)scrollBands * ((float)NativeMethods.WHEEL_DELTA / (float)wheelScrollLines)); 3423this.cumulativeVerticalWheelDelta = 0; 3428this.cumulativeVerticalWheelDelta = 0;
3 references to cumulativeVerticalWheelDelta
System.Windows.Forms (3)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (3)
3326Debug.Assert(this.cumulativeVerticalWheelDelta > -NativeMethods.WHEEL_DELTA, "cumulativeVerticalWheelDelta is too small"); 3327Debug.Assert(this.cumulativeVerticalWheelDelta < NativeMethods.WHEEL_DELTA, "cumulativeVerticalWheelDelta is too big"); 3359float partialNotches = (float)cumulativeVerticalWheelDelta / (float)NativeMethods.WHEEL_DELTA;