Nevermind, I found this:
https://htmlrenderer.codeplex.com/discussions/442448
At first it didn't work the way I expected, but the problem was a redundant Invalidate().
So I added the following to my SimpleHtmlPanel wrapper:
https://htmlrenderer.codeplex.com/discussions/442448
At first it didn't work the way I expected, but the problem was a redundant Invalidate().
So I added the following to my SimpleHtmlPanel wrapper:
public void GoToStart()
{
AutoScrollPosition = new Point(HorizontalScroll.Minimum, VerticalScroll.Minimum);
}
public void GoToEnd()
{
AutoScrollPosition = new Point(HorizontalScroll.Maximum - HorizontalScroll.LargeChange, VerticalScroll.Maximum - VerticalScroll.LargeChange);
}
Works like a charm!