Struct ScrollBarParameters
Represents parameters of the scroll bar such as small change and large change in the scrolling position.
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public struct ScrollBarParameters
  Constructors
ScrollBarParameters(Int32, Int32, Int32, Int32)
Initializes a new ScrollBarParameters structure.
Declaration
public ScrollBarParameters(int minimum, int maximum, int smallChange, int largeChange)
  Parameters
| 
        System.Int32
        minimum
         Initializes the Minimum value of the scrolling.  | 
    
| 
        System.Int32
        maximum
         Initializes the Maximum value of the scrolling.  | 
    
| 
        System.Int32
        smallChange
         Initializes the SmallChange value.  | 
    
| 
        System.Int32
        largeChange
         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
public int LargeChange
  Field Value
| 
        System.Int32
         
  | 
    
Maximum
Represents the maximum value of the scrolling position.
Declaration
public int Maximum
  Field Value
| 
        System.Int32
         
  | 
    
Minimum
Represents the minimum value of the scrolling position.
Declaration
public int Minimum
  Field Value
| 
        System.Int32
         
  | 
    
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
public int SmallChange
  Field Value
| 
        System.Int32
         
  |