ScrollType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the scrolling that will occur when the one of the Scroll
methods in the AxisScaleView class is called.
public enum class ScrollType
public enum ScrollType
type ScrollType =
Public Enum ScrollType
- Inheritance
Fields
Name | Value | Description |
---|---|---|
SmallDecrement | 0 | The data view is decreased by one small scrolling interval. |
SmallIncrement | 1 | The data view is increased by one small scrolling interval. |
LargeDecrement | 2 | The data view is decreased by one large scrolling interval. |
LargeIncrement | 3 | The data view is increased by one large scrolling interval. |
First | 4 | Data is scrolled to the first displayed view. |
Last | 5 | Data is scrolled to the last displayed view. |
Remarks
The ScrollType enumeration is used with one of the Scroll
methods to specify the direction and amount of scrolling.