10 writes to LargeChange
System.Windows.Forms (8)
winforms\Managed\System\WinForms\DataGrid.cs (2)
6823horizScrollBar.LargeChange = Math.Max(totalWidth - widthNotVisible, 0); 6843vertScrollBar.LargeChange = numTotallyVisibleRows != 0 ? numTotallyVisibleRows : 1;
winforms\Managed\System\WinForms\DataGridViewMethods.cs (5)
4513this.vertScrollBar.LargeChange = this.layout.Data.Height - totalVisibleFrozenHeight; 10493this.horizScrollBar.LargeChange = Math.Max(totalVisibleWidth - totalVisibleFrozenWidth - widthNotVisible, 0); 10512this.horizScrollBar.LargeChange = 1; 10535this.vertScrollBar.LargeChange = this.layout.Data.Height - totalVisibleFrozenHeight; 10555this.vertScrollBar.LargeChange = 1;
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (1)
4888ScrollBar.LargeChange = visibleRows-1;
System.Workflow.ComponentModel (2)
AuthoringOM\Design\WorkflowView.cs (2)
1808hScrollBar.LargeChange = largeChangeSize.Width + 1; 1813vScrollBar.LargeChange = largeChangeSize.Height + 1;
34 references to LargeChange
System.Windows.Forms (23)
winforms\Managed\System\WinForms\DataGrid.cs (1)
4390int newValue = horizScrollBar.Value + (move < 0 ? 1 : -1) * horizScrollBar.LargeChange;
winforms\Managed\System\WinForms\DataGridViewMethods.cs (10)
4508int oldThumbHeight = Math.Max(((this.vertScrollBar.Height - 2*SystemInformation.VerticalScrollBarArrowHeight) * this.vertScrollBar.LargeChange) / this.vertScrollBar.Maximum, 8); 4518oldThumbHeight != Math.Max(((this.vertScrollBar.Height - 2*SystemInformation.VerticalScrollBarArrowHeight) * this.vertScrollBar.LargeChange) / this.vertScrollBar.Maximum, 8))) 16959this.VerticalOffset -= fullNotches * this.vertScrollBar.LargeChange; 16960if (Math.Abs(this.VerticalOffset - originalVerticalOffset) >= Math.Abs(fullNotches * this.vertScrollBar.LargeChange)) 16972this.HorizontalOffset -= fullNotches * this.horizScrollBar.LargeChange; 16973if (Math.Abs(this.HorizontalOffset - originalHorizontalOffset) >= Math.Abs(fullNotches * this.horizScrollBar.LargeChange)) 17626int newHorizontalOffset = this.horizScrollBar.Maximum - this.horizScrollBar.LargeChange - dataGridViewColumn.Thickness; 28514this.VerticalOffset += Math.Max(firstDisplayedScrollingRowHeight, this.vertScrollBar.LargeChange); 28520this.VerticalOffset -= this.vertScrollBar.LargeChange; 28528if (se.NewValue >= this.vertScrollBar.Maximum - this.vertScrollBar.LargeChange)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (4)
2324(newValue + (ScrollBar.LargeChange-1) >= totalProps)) { 3368int large = fullNotches * this.scrollBar.LargeChange; 3373initialOffset -= fullNotches * this.scrollBar.LargeChange; 3374if (Math.Abs(initialOffset - originalOffset) >= Math.Abs(fullNotches * this.scrollBar.LargeChange)) {
winforms\Managed\System\WinForms\ScrollBar.cs (8)
416return Math.Min(smallChange, LargeChange); 771return minimum + (maximum - LargeChange + 1) - position; 798si.nPage = LargeChange; 872newValue = maximum - LargeChange + 1; // si.nMax - si.nPage + 1; 880newValue = Math.Min(value + SmallChange, maximum - LargeChange + 1); // max - lChange + 1); 884newValue = Math.Max(value - LargeChange, minimum); 888newValue = Math.Min(value + LargeChange, maximum - LargeChange + 1); // si.nPos + si.nPage,si.nMax - si.nPage + 1);
System.Workflow.ComponentModel (11)
AuthoringOM\Design\MessageFilters\AutoScrollExpandMessageFilter.cs (2)
121else if (clientPoint.X >= clientRectangle.Right - clientRectangle.Width / 10 && hScrollBar.Value < hScrollBar.Maximum - hScrollBar.LargeChange) 127else if (clientPoint.Y >= clientRectangle.Bottom - clientRectangle.Height / 10 && vScrollBar.Value < vScrollBar.Maximum - vScrollBar.LargeChange)
AuthoringOM\Design\MessageFilters\WindowManager.cs (1)
415scrollPosition.Y = scrollPosition.Y + ((pageUp ? -1 : 1) * parentView.VScrollBar.LargeChange);
AuthoringOM\Design\MessageFilters\ZoomingMessageFilter.cs (2)
188parentView.ScrollPosition = new Point(newCenter.X - parentView.HScrollBar.LargeChange / 2, newCenter.Y - parentView.VScrollBar.LargeChange / 2);
AuthoringOM\Design\WorkflowView.cs (6)
466value.X = Math.Min(value.X, hScrollBar.Maximum - hScrollBar.LargeChange + 1); 474value.Y = Math.Min(value.Y, vScrollBar.Maximum - vScrollBar.LargeChange + 1); 1805if (hScrollBar.LargeChange != largeChangeSize.Width) 1810if (vScrollBar.LargeChange != largeChangeSize.Height) 1816int xMaxScrollPos = maximumScrollSize.Width - hScrollBar.LargeChange; 1821int yMaxScrollPos = maximumScrollSize.Height - vScrollBar.LargeChange;