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