breakline in textarea

Hi, I want to add a break line to a string placed in a text area. I want to determine where the break line is placed so I can create the following example in the text area:

Company Name
Address
Postcode Place

How can I set the break line in the string?

Hi Leendert,

You can use \n or \r or both.
One is a linefeed and the other a return.

Hope this helps.

Leendert:
Hi, I want to add a break line to a string placed in a text area. I want to determine where the break line is placed so I can create the following example in the text area:

Company Name
Address
Postcode Place

How can I set the break line in the string?

You can use like this

textField = “Company Name \nAddress \nPostcode Place”;

Hope it helps.

thank you!