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