I’ve been trying to enter a blank line in a TextLabel, but i can’t seem to find a way to do it. The best i was able to do was just add a lot of blank spaces and then a dot, but it doesn’t do what i need it to specifically.
What i’ve achieved so far:
What i’m trying to achieve:
Either do it in another text editor;
…or use the <br/> tag, but make sure RichText is enabled for that TextBox.
<br/>
RichText
TextBox
/n
To add a single line you can do myTextLabel.Text = “Line 1\n\nLine 2” Which produces Line 1
Line 2
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.