11 references to LargeChange
System.Windows.Forms (11)
winforms\Managed\System\WinForms\ScrollableControl.cs (8)
1344
if (pos > VerticalScroll.
LargeChange
) {
1345
pos-=VerticalScroll.
LargeChange
;
1352
if (pos < maxPos-VerticalScroll.
LargeChange
) {
1353
pos+=VerticalScroll.
LargeChange
;
1421
if (pos > HorizontalScroll.
LargeChange
) {
1422
pos-=HorizontalScroll.
LargeChange
;
1429
if (pos < maxPos-HorizontalScroll.
LargeChange
) {
1430
pos+=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
'/>
230
return Math.Min(smallChange,
LargeChange
);
318
si.nPage = (parent.AutoScroll) ? PageSize :
LargeChange
;