OutputVar := MfEnvironment.Instance.NewLine
Value
Var String
Gets var string of the new line chars for the current environment.
Throws MfNotSupportedException if attempt is made to set value.
Read-only Property
MyVar := MfString.Format("Hello World.{0}From me to you!", MfEnvironment.Instance.NewLine)
; {0} will be replaced with a new line
; For convenience you may set a super global at the beginning of your script
Global NL := MfEnvironment.Instance.NewLine
; then could be use as follows
MyVar := MfString.Format("Hello World.{0}From me to you!", NL)