11 references to LargeChange
System.Windows.Forms (11)
System\Windows\Forms\Scrolling\ScrollableControl.cs (8)
1298
if (pos > VerticalScroll.
LargeChange
)
1300
pos -= VerticalScroll.
LargeChange
;
1309
if (pos < maxPos - VerticalScroll.
LargeChange
)
1311
pos += VerticalScroll.
LargeChange
;
1392
if (pos > HorizontalScroll.
LargeChange
)
1394
pos -= HorizontalScroll.
LargeChange
;
1403
if (pos < maxPos - HorizontalScroll.
LargeChange
)
1405
pos += 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
"/>
191
return Math.Min(_smallChange,
LargeChange
);
269
nPage = _parent.AutoScroll ? (uint)GetPageSize(_parent) : (uint)
LargeChange
,