Talking about WebAssembly components, when in a page I have a RadzenBody that scrolls, I can easily access the OnScroll event, but I didn't find any way to know the actual scroll position itself.
<RadzenBody @onscroll=@OnScroll @ref=radzenBody>
@Body
</RadzenBody>
private void OnScroll(EventArgs args)
{
Console.WriteLine("Scroll position???");
}
Is there an easy way, please?
Thank you.