This is the discussion forum for the HtmlEditor. See also the HtmlEditor home page, where you can download the control, and the Documentation Wiki, a collaborative project for documenting the control.
First of all, thanks for the great control; I've used it quite a lot in the past few weeks. As for the topic, is there any way to scroll the control without the user doing so manually? I'd like to scroll it to the bottom on occasion.
Also, is there an efficient way to append text to the end of a document, or should i keep the text in another buffer and LoadDocument() that buffer each time something changes?
Finally, is there any way to get at the underlying Web Browser control (assuming there is one)? If so, I could call webBrowser.Document.Body.Children[x].ScrollIntoView() (where x is the index of the last item) to bring the last item into view (effectively scrolling to the bottom).
I'm using it to display the log for a chat client, if you're curious, and it seems to be working well except for the issues above.
My apologies if my original request was too broad. I'm primarily interested in scrolling the editor without user intervention, by whatever means necessary; hopefully, a single question will be more easily answered than the multiple ones I posted above