In Windows Forms Applications Im using the following Code to scroll the Page inside a Webbrowser:
HtmlDocument doc = webBrowser.Document;
mshtml.IHTMLDocument2 htmldoc = (mshtml.IHTMLDocument2)doc.DomDocument;
htmldoc.parentWindow.scrollBy(265, 20);
Does anyone know how to do the same in an WPF Application (without using WindowsFormsHost)?