VerticalScrollBarPosition Enumeration
Indicates a predefined position of the Vertical Scrollbar's scroll in a Control.
Namespace: DevCase.Core.Diagnostics.ProcessesAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public enum VerticalScrollBarPosition
Public Enumeration VerticalScrollBarPosition
Dim instance As VerticalScrollBarPosition
public enum class VerticalScrollBarPosition
type VerticalScrollBarPosition
No code example is currently available or this language may not be supported.
Undefined |
0 |
The Vertical Scrollbar scroll is at undefined position.
This means that the current scroll position does not match with any other of this Enum.
|
AtTop |
1 |
The Vertical Scrollbar has scrolled to Top of the Control.
|
AtBottom |
2 |
The Vertical Scrollbar has scrolled to Bottom of the Control.
|
ReachedTop |
3 |
The Vertical Scrollbar scroll has reached the Top of the Control.
|
ReachedBottom |
4 |
The Vertical Scrollbar scroll has reached the Bottom of the Control.
|