2 writes to value
System.Windows.Forms (2)
winforms\Managed\System\WinForms\ScrollBar.cs (2)
389
this.
value
= value;
499
this.
value
= value;
12 references to value
System.Windows.Forms (12)
winforms\Managed\System\WinForms\ScrollBar.cs (12)
359
if (value < this.
value
)
388
if (value > this.
value
)
492
return
value
;
495
if (this.
value
!= value) {
802
si.nPos = ReflectPosition(
value
);
805
si.nPos =
value
;
859
int newValue =
value
;
860
int oldValue =
value
;
876
newValue = Math.Max(
value
- SmallChange, minimum);
880
newValue = Math.Min(
value
+ SmallChange, maximum - LargeChange + 1); // max - lChange + 1);
884
newValue = Math.Max(
value
- LargeChange, minimum);
888
newValue = Math.Min(
value
+ LargeChange, maximum - LargeChange + 1); // si.nPos + si.nPage,si.nMax - si.nPage + 1);