I've search for this but cannot seem to find a resolution. I have an ultratexteditor with Multiline = True. I have text in it and then a bunch of carriage returns after the text. I want to append some new text AFTER the carriage returns. When I do that, I lose all the carriage returns and the appended text appears right next to the original text. I'm sure there is an easy way to do this, but I'm not finding it.
Hello,
You can assign the text like this:
ultraTextEditor1.Text = "Line one\r\nLine two\r\n\r\n\r\n";ultraTextEditor1.Text += "Line three";