2 writes to _maximum
System.Windows.Forms (2)
System\Windows\Forms\Scrolling\ScrollBar.cs (2)
254
_maximum
= value;
276
_maximum
= value;
10 references to _maximum
System.Windows.Forms (10)
System\Windows\Forms\Scrolling\ScrollBar.cs (10)
216
return Math.Min(_largeChange,
_maximum
- _minimum + 1);
239
get =>
_maximum
;
242
if (
_maximum
!= value)
274
if (
_maximum
< value)
361
if (value < _minimum || value >
_maximum
)
585
return _minimum + (
_maximum
- LargeChange + 1) - position;
609
nMax =
_maximum
,
679
newValue =
_maximum
- LargeChange + 1;
687
newValue = Math.Min(_value + SmallChange,
_maximum
- LargeChange + 1);
695
newValue = Math.Min(_value + LargeChange,
_maximum
- LargeChange + 1);