I want to append text to a RichTextBox control but I don't want to interfere with the user's scroll position or text selection. The best that I've been able to do so far is to save the SelectionStart and SelectionLength properties and restore them after I append my text. This is close but the cursor ends up at the top of the control rather than wherever it was prior to the append. Is this possible?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
Ok here is exactly what you need: Richtextbox :- controlling scrolling when appending text. There you will find how to lock the scroll when appending text. Look for CoolColin answer:
You can use the Have a look at RichTextBox Class. At the end you need to use |
||||
|
|