ScrollBarParameters
Struct
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
Constructors
Initializes a new ScrollBarParameters structure.
C#
public ScrollBarParameters(int minimum, int maximum, int smallChange, int largeChange)
Initializes the Minimum value of the scrolling.
maximumintInitializes the Maximum value of the scrolling.
smallChangeintInitializes the SmallChange value.
largeChangeintInitializes 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 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