Hello,
I have a RichBox(memo) that I'd like to add lines to.
Currently,I use this
RichBox1.text += "the line I'd like to add" + "\n";
Isn't there something like the method in Delphi below?
Memo.Lines.add('The line I''d like to add');
|
|
|
|
|
|
|
AppendText is the closest it gets. Unfortunately you still have to append the newline character:
|
||
|
|
|
|
You could use an extension method to add this handy
|
||
|
|
|
|
You can use the AppendText method from TextBoxBaseand explicitly add the new line
|
||
|
|