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
You can check documentElement
documentElement
IHTMLElement2 page = (wb.Document.DomDocument as IHTMLDocument3).documentElement as IHTMLElement2; int pos = page.scrollTop;