ScrollBehavior
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.1.0.0)
Specifies the scrolling behavior to use when performing scroll operations. Since 4.0.3
- C#
- VB.NET
public enum ScrollBehavior : Enum
Public Enum ScrollBehavior As [Enum]
Use this enumeration to control whether scrolling occurs instantly or with a smooth animation. The behavior selected may affect user experience and accessibility. The default value is typically Auto.
Fields
| Name | Description |
|---|---|
| Auto | Scroll behavior is determined by the computed value of scroll-behavior. |
| Instant | Scrolling should happen instantly in a single jump. |
| Smooth | Scrolling should animate smoothly. |
Used By
| Name | Description |
|---|---|
| Control.ScrollControlIntoView | Scrolls the control into view in the container using the specified alignX and alignY preferences. Since 4.0.3 |