5 writes to _value
System.Windows.Forms (5)
System\Windows\Forms\Scrolling\ScrollableControl.cs (3)
944scrollProperties._value = 0; 1178HorizontalScroll._value = -displayRect.X; 1203VerticalScroll._value = -displayRect.Y;
System\Windows\Forms\Scrolling\ScrollProperties.cs (2)
160_value = value; 226_value = value;
7 references to _value
System.Windows.Forms (7)
System\Windows\Forms\Scrolling\HScrollProperties.cs (1)
19private protected override int GetHorizontalDisplayPosition(ScrollableControl parent) => -_value;
System\Windows\Forms\Scrolling\ScrollProperties.cs (5)
120if (value < _value) 158if (value > _value) 216get => _value; 219if (_value != value) 270nPos = _value,
System\Windows\Forms\Scrolling\VScrollProperties.cs (1)
21private protected override int GetVerticalDisplayPosition(ScrollableControl parent) => -_value;