Adding text to new line in RichTextBox?

Line breaks are simply part of the text themselves. If you want a line break in the text then add a line break, e.g.
VB.NET:
myRichTextBox.AppendText(Environment.NewLine & "This text will appear on the next line.")
 
Back
Top