11 references to LargeChange
System.Windows.Forms (11)
System\Windows\Forms\Scrolling\ScrollableControl.cs (8)
1298if (pos > VerticalScroll.LargeChange) 1300pos -= VerticalScroll.LargeChange; 1309if (pos < maxPos - VerticalScroll.LargeChange) 1311pos += VerticalScroll.LargeChange; 1392if (pos > HorizontalScroll.LargeChange) 1394pos -= HorizontalScroll.LargeChange; 1403if (pos < maxPos - HorizontalScroll.LargeChange) 1405pos += HorizontalScroll.LargeChange;
System\Windows\Forms\Scrolling\ScrollProperties.cs (3)
66/// Gets or sets a value to be added or subtracted to the <see cref="LargeChange"/> 191return Math.Min(_smallChange, LargeChange); 269nPage = _parent.AutoScroll ? (uint)GetPageSize(_parent) : (uint)LargeChange,