+1 888 340 6572

NewLine

From MultiCharts
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Starts a new line and returns carriage.

Usage

NewLine

Notes

  • Use the "+" character to add NewLine to a string expression, or
  • Use Text to generate a string including new lines.

Examples

FileAppend("c:\testfile.txt", "We can see a new bar for" + NumToStr(Date, 0) + NewLine);

Will print the specified line to the 'testfile.txt' followed by a new line.

Print(Text("Hello", NewLine, "World!"));

Will print

Hello
World!

to the PowerLanguage Editor output log.