ScrollAmount 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.
Used to indicate a scroll direction for a scrollbar and whether to move by the large amount or small amount of the scrollbar, or by no amount.
public enum class ScrollAmount
public enum ScrollAmount
type ScrollAmount =
Public Enum ScrollAmount
- Inheritance
-
ScrollAmount
Fields
Name | Value | Description |
---|---|---|
NoAmount | 0 | Indicates no scroll amount. |
ForwardByLargeAmount | 1 | Indicates to scroll forward by the large amount of the scrollbar. |
BackByLargeAmount | 2 | Indicates to scroll back by the large amount of the scrollbar. |
ForwardBySmallAmount | 3 | Indicates to scroll forward by the small amount of the scrollbar. |
BackBySmallAmount | 4 | Indicates to scroll back by the small amount of the scrollbar. |