Apply text with carriage return

Write text on different lines in a text box (carriage return)

This is the first line
This is the second line

var New_Line='\n';
Text_Box.applyText("This is the first line”+ New_Line + "This is the second line" );

Code language: JavaScript (javascript)
Scroll to Top