2 writes to _maximum
System.Windows.Forms (2)
System\Windows\Forms\Scrolling\ScrollBar.cs (2)
247
_maximum
= value;
269
_maximum
= value;
10 references to _maximum
System.Windows.Forms (10)
System\Windows\Forms\Scrolling\ScrollBar.cs (10)
209
return Math.Min(_largeChange,
_maximum
- _minimum + 1);
232
get =>
_maximum
;
235
if (
_maximum
!= value)
267
if (
_maximum
< value)
354
if (value < _minimum || value >
_maximum
)
578
return _minimum + (
_maximum
- LargeChange + 1) - position;
602
nMax =
_maximum
,
672
newValue =
_maximum
- LargeChange + 1;
680
newValue = Math.Min(_value + SmallChange,
_maximum
- LargeChange + 1);
688
newValue = Math.Min(_value + LargeChange,
_maximum
- LargeChange + 1);