11 references to LargeChange
System.Windows.Forms (11)
winforms\Managed\System\WinForms\ScrollableControl.cs (8)
1344if (pos > VerticalScroll.LargeChange) { 1345pos-=VerticalScroll.LargeChange; 1352if (pos < maxPos-VerticalScroll.LargeChange) { 1353pos+=VerticalScroll.LargeChange; 1421if (pos > HorizontalScroll.LargeChange) { 1422pos-=HorizontalScroll.LargeChange; 1429if (pos < maxPos-HorizontalScroll.LargeChange) { 1430pos+=HorizontalScroll.LargeChange;
winforms\Managed\System\WinForms\ScrollProperties.cs (3)
93/// Gets or sets a value to be added or subtracted to the <see cref='System.Windows.Forms.ScrollProperties.LargeChange'/> 230return Math.Min(smallChange, LargeChange); 318si.nPage = (parent.AutoScroll) ? PageSize : LargeChange;