In a TextBox the character \n
does not change the text line, eg:
textBox1.Multiline = true;
textBox1.Text = "IMPRIMEEMCIMA\nIMPRIMEEMBAIXO";
However, the \t
character works. I also noticed that on a label the same text prints the line change but does not print the tab, \ t.
In a MessageBox and Console application everything works fine.