RadzenBody scroll position

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.

Hi @andreab,

As far as I know Blazor does not provide the scroll position. You would need to use JavaScript for that. You can check here for some ideas: header - How do i subscribe to onscroll event in Blazor? - Stack Overflow