In some parts of our application we are using UltraTextEditor to display status messages for long running processes. As you can expect, at some point there are more status messages that can be displayed in the window.
Our question is how can we autoscroll the contents so that the most recent status message is in view (either by setting a property on the control, or programically via our code). We are currently using the "AppendText" method to add new status messages. This does reset the text caret to the end of the text, we have also set the "AlwaysInEditMode" property to true.
Thank you sir.
After you call AppendText, call:
this.ultraTextEditor1.ScrollToCaret();
This worked in my test where I have Multiline set to true, Scrollbars set to Both, and AlwaysInEditMode set to true.