Skip to main content
A newer version of this page is available. .

ScrollBarBase.LargeChange Property

Gets or sets the increment applied to the ScrollBarBase.Value property when the scroll box is moved by a ‘page’.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.Utils.v19.1.dll

Declaration

[DefaultValue(10)]
[DXCategory("Behavior")]
public int LargeChange { get; set; }

Property Value

Type Default Description
Int32 10

An integer value representing the increment applied when the scroll box is moved by a ‘page’.

Remarks

Scroll bars provide easy navigation through a long list of items or a large amount of information by scrolling horizontally and/or vertically within an application or control. When a user presses the PAGE UP or PAGE DOWN key or clicks in the scroll bar track on either side of the scroll box, the ScrollBarBase.Value property changes according to the LargeChange value.

Use the ScrollBarBase.SmallChange property to determine the increment applied when the user presses one of the keyboard arrow keys or clicks one of the scroll-bar buttons.

The ScrollBarBase.Scroll and ScrollBarBase.ValueChanged events fire each time the scroll box has been moved by a mouse or keyboard action.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the LargeChange property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also