As I wrote before, retrieve a scrollview
Dim s As ScrollView = WebView1.As(NativeObject).GetField ("scrollView")
and then you can get/set s.ScrollOffsetX and s.ScrollOffsetY values.
Meanwhile you should do this when a scrollview is still. For example, from our sample:
Wait For (WebView1.EvaluateJavaScript($"uiWebview_ScrollTo('${idx}')"$)) WebView1_JSComplete (Success As Boolean, Result As String)
If you will retrieve scroll offsets immediatelly after this statement, you will receive the coordinates before a scroll.
It's possible to use a delegate and to detect when a scroll is finished, but you need to understand obj-c.