2 writes to _maximum
System.Windows.Forms (2)
System\Windows\Forms\Scrolling\ScrollBar.cs (2)
249
_maximum
= value;
271
_maximum
= value;
10 references to _maximum
System.Windows.Forms (10)
System\Windows\Forms\Scrolling\ScrollBar.cs (10)
211
return Math.Min(_largeChange,
_maximum
- _minimum + 1);
234
get =>
_maximum
;
237
if (
_maximum
!= value)
269
if (
_maximum
< value)
356
if (value < _minimum || value >
_maximum
)
580
return _minimum + (
_maximum
- LargeChange + 1) - position;
604
nMax =
_maximum
,
674
newValue =
_maximum
- LargeChange + 1;
682
newValue = Math.Min(_value + SmallChange,
_maximum
- LargeChange + 1);
690
newValue = Math.Min(_value + LargeChange,
_maximum
- LargeChange + 1);