Struct
ScrollBarParameters

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:

cs-api-definition
public struct ScrollBarParameters

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

Constructors

ScrollBarParameters(int, int, int, int)

Initializes a new ScrollBarParameters structure.

Declaration

cs-api-definition
public ScrollBarParameters(int minimum, int maximum, int smallChange, int largeChange)

Parameters

minimum

int

Initializes the Minimum value of the scrolling.

maximum

int

Initializes the Maximum value of the scrolling.

smallChange

int

Initializes the SmallChange value.

largeChange

int

Initializes the LargeChange value.

Fields

LargeChange

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.

Declaration

cs-api-definition
public int LargeChange

Field Value

int

Maximum

Represents the maximum value of the scrolling position.

Declaration

cs-api-definition
public int Maximum

Field Value

int

Minimum

Represents the minimum value of the scrolling position.

Declaration

cs-api-definition
public int Minimum

Field Value

int

SmallChange

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.

Declaration

cs-api-definition
public int SmallChange

Field Value

int