How to Add a Line Break to an Expression
To add a line break to your text expression you can use @"'\n'" in between where you want the break with a + on either side, this needs to be used in a long text box as this can be pulled down to other lines. Example below:
'abc' + @"'\n'" + 'def'
The above expression should come out as:
abc
def
Please sign in to leave a comment.
Comments
0 comments