Interface IScrollListener
- Namespace
- MudBlazor
- Assembly
- MudBlazor.dll
Interface for a scroll listener that listens to scroll events on a specified element.
public interface IScrollListener : IDisposable
- Inherited Members
- Extension Methods
Properties
Selector
Gets or sets the CSS selector to which the scroll event will be attached.
string? Selector { get; set; }
Property Value
Events
OnScroll
Occurs when a scroll event is detected on the specified element.
event EventHandler<ScrollEventArgs> OnScroll