4 writes to SmallChange
System.Windows.Forms (4)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (2)
10315_horizScrollBar.SmallChange = 1; 10334_horizScrollBar.SmallChange = 1;
System\Windows\Forms\Printing\PrintPreviewControl.cs (2)
70SmallChange = ScrollSmallChange, 83SmallChange = ScrollSmallChange,
17 references to SmallChange
System.Windows.Forms (17)
System\Windows\Forms\Printing\PrintPreviewControl.cs (10)
1000if (pos > _vScrollBar.SmallChange) 1002pos -= _vScrollBar.SmallChange; 1018maxPos = _vScrollBar.Maximum - _vScrollBar.SmallChange; 1020if (pos < maxPos - _vScrollBar.SmallChange) 1022pos += _vScrollBar.SmallChange; 1038if (pos > _hScrollBar.SmallChange) 1040pos -= _hScrollBar.SmallChange; 1056maxPos = _hScrollBar.Maximum - _hScrollBar.SmallChange; 1058if (pos < maxPos - _hScrollBar.SmallChange) 1060pos += _hScrollBar.SmallChange;
System\Windows\Forms\Printing\PrintPreviewControl.PrintPreviewControlAccessibleObject.cs (4)
112scrollValue = owner._hScrollBar.Value + owner._hScrollBar.SmallChange; 120scrollValue = owner._hScrollBar.Value - owner._hScrollBar.SmallChange; 135scrollValue = owner._vScrollBar.Value + owner._vScrollBar.SmallChange; 143scrollValue = owner._vScrollBar.Value - owner._vScrollBar.SmallChange;
System\Windows\Forms\Scrolling\ScrollBar.cs (2)
676newValue = Math.Max(_value - SmallChange, _minimum); 680newValue = Math.Min(_value + SmallChange, _maximum - LargeChange + 1);
System\Windows\Forms\Scrolling\ScrollBar.ScrollBarAccessibleObject.cs (1)
162internal override double SmallChange => this.TryGetOwnerAs(out ScrollBar? owner) ? owner.SmallChange : base.SmallChange;