button print 2-3 line of text | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

button print 2-3 line of text

i want to create button in c# application that should print paragraph text or new line(2-3 lines of) texts into richTextbox. Help please!

20th Feb 2019, 1:03 PM
dubam
1 Answer
0
You can do it with next: RichTextBox.Clear(); RichTextBox.AppendText("Your text line 1" + System.Enviroment.NewLine()); RichTextBox.AppendText("Your text line 2" + System.Enviroment.NewLine())
4th Apr 2019, 5:00 AM
id001x
id001x - avatar