The NewLine function will accept a NewLine Count value, this specifies the number of newline characters to be inserted.
Newline returns a character to represent a newline character within a text string. Multiple newline characters can be returned.
Newline([NewLine Count])
Where:
NewLine Count (optional) is the number of newline characters to insert.
The NewLine Count has a maximum value of 10000 that can be applied. If the NewLine count value exceeds the maximum the function will revert to 10000.
Rule | Result | Meaning |
---|---|---|
"Hello"&Newline()&"World" | Hello World | This will insert a newline between the word Hello and World. |
"Hello"&Newline(2)&"World" | Hello World | This will insert two newlines between the word Hello and World. |