Is it possible to somehow programmatically scroll WebBrowser Silverlight control?
<WebBrowser
x:Name="BrowserControll"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
Margin="10,10,10,0"
Source="http://www.google.com" />
You can use
WebBrowser.InvokeScript(), and pass in some javascript that will scroll the browser to the desired location. See thewindow.scrollTo()javascript method.For example:
Would scroll the browser 100 pixels down.