I tried using webBrowser1.Document.Body.ScrollTop and webBrowser1.Document.Body.ScrollLeft, but they don\'t work. They always return 0 and I can\'t
webBrowser1.Document.Body.ScrollTop
webBrowser1.Document.Body.ScrollLeft
I was able to query the scroll position using this
if (this.webBrowser.Document != null) { int scrollPosition = this webBrowser.Document.Body.ScrollTop; }