Is there a way to create a linebreak in a dynamic txt box. Something like this
line1="1st sentence";
line2="2nd sentence";
line3="Space space i'm in space!;";
linebreak= //however you do one
listbox.text = line1 + linebreak + line2 + line break + line3;
The output would be
1st sentence
2nd sentence
Space space i’m in space!
Any help would be appreciated =)