Editing text property to 2 lines?

I have a label with multiline = true however I cannot figure out how to edit the text to make it appear like this:
Hello,
Hi

me.Text="Hello," + " Hi" is what I have so far.

Thanks for the help!

Me.text = "Hello, " + endOfLine + “Hi”

Programmatically it is same as mentioned by Roger.

Text entry by user can be done by pressing CTRL+ENTER or SHIFT+ENTER for starting a new line of text in TextArea control. That is on Windows 7, Xojo v2014r2.1.

Perfect, thank you!

Got it, thanks.