NewLine

Namespace ›› System ›› MfEnvironment ›› Properties ››
Parent Previous Next

NewLine

OutputVar := MfEnvironment.Instance.NewLine

Value

Var String

Gets

Gets var string of the new line chars for the current environment.

Throws

Throws MfNotSupportedException if attempt is made to set value.

Remarks

Read-only Property

Example

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)