S()

Namespace ›› System ›› MfParams ›› Methods ››
Parent Previous Next

S()

OutputVar := MfParams.S(value)

S(value)

Creates a new MfString object containing value

Parameters

value

The var with the new string value.

Returns

Returns an MfString instance containing value

Throws

Throws MfArgumentException if value is object but not a valid instance of MfString.
Throws MfException with inner exception if unable to create new instance of MfString.

Remarks

Static Method.
If value argument is instance of MfString then that creates and returns a new MfString containing the same value.
This method is a static primitive generator.

Example

strObj := MfParams.S("Hello World")
MsgBox % strObj.Value ; Displays Hello World