public enum OverscrollBehaviorWhat a scroll that has run out of room does to the wheel.
No guide page documents this yet — the page shows what the code says about itself.
Remarks
Two independent questions in one property, which is what CSS made it: whether a scroll that runs out here continues in whatever contains this, and whether the boundary itself does anything. Auto chains and bounces, Contain bounces without chaining, None does neither.
⚠ Contain and None used to be one value, and the reason they no longer are is that the local effect they differ over now exists. The elastic overscroll none suppresses is OverscrollTop; before there was one, none had nothing to additionally turn off and this enum said so. A reader who remembers that identity is reading a note that is no longer true.
Fields and properties (3)
AutoThe wheel chains to whatever contains this once it can go no further.
ContainIt does not. The scroll stops at this box's edge, and the edge still gives.
NoneNeither. The chain stops here and the boundary is hard — no rubber-band, whatever the gesture.
Used by (1)
- ScrollViewVixen.Ui.Controls