New to Telerik UI for WinFormsStart a free 30-day trial

Represents parameters of the scroll bar such as small change and large change in the scrolling position.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public struct ScrollBarParameters

Inherited Members ValueType.Equals(object)ValueType.GetHashCode()ValueType.ToString()

Constructors

Initializes a new ScrollBarParameters structure.

C#
public ScrollBarParameters(int minimum, int maximum, int smallChange, int largeChange)
Parameters:minimumint

Initializes the Minimum value of the scrolling.

maximumint

Initializes the Maximum value of the scrolling.

smallChangeint

Initializes the SmallChange value.

largeChangeint

Initializes the LargeChange value.

Fields

Represents a large change in the scrolling position; the value which will be added or substracted from the current position in case of large change.

C#
public int LargeChange

Represents the maximum value of the scrolling position.

C#
public int Maximum

Represents the minimum value of the scrolling position.

C#
public int Minimum

Represents a small change in the scrolling position; the value which will be added or substracted from the current position in case of small change.

C#
public int SmallChange