| ScrollBarVisibility Enumeration |
Specifies the visibility of a
ScrollBar for scrollable content.
Namespace: DigitalRune.Game.UI.ControlsAssembly: DigitalRune.Game.UI (in DigitalRune.Game.UI.dll) Version: 1.8.0.0 (1.8.0.14553)
Syntax public enum ScrollBarVisibility
Public Enumeration ScrollBarVisibility
public enum class ScrollBarVisibility
Members
| Member name | Value | Description |
---|
| Disabled | 0 |
A scroll bar does not appear even when the ScrollViewer cannot display all of
the content. The content size is restricted by the size of the ScrollViewer.
|
| Auto | 1 |
A scroll bar appears when the ScrollViewer cannot display all of the content.
|
| Hidden | 2 |
A scroll bar does not appear even when the ScrollViewer cannot display all of
the content. The content size is not limited by the size of the ScrollViewer.
|
| Visible | 3 |
A scroll bar always appears.
|
See Also