ScrollOptions 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.
This enumeration provides options that are used to configure scrolling in the UI.
This enumeration supports a bitwise combination of its member values.
public enum class ScrollOptions
[System.Flags]
public enum ScrollOptions
[<System.Flags>]
type ScrollOptions =
Public Enum ScrollOptions
- Inheritance
-
ScrollOptions
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No scrolling. |
UseProgrammatic | 1 | Use programmatic scrolling. |
UseMouseWheel | 2 | Use the mouse wheel. |
UseScrollBar | 4 | Use the scroll bar. |
UseClickOnScrollBar | 8 | Use a click on the scroll bar. |
UseKeyboard | 16 | Use keyboard scrolling. |