OutputVar := MfParams.B(value)
Creates a new MfBool object containing value
value
The var with the new boolean value.
Returns an MfBool instance containing value
Throws MfArgumentException if value is object but not a valid instance of MfBool.
Throws MfException with inner exception if unable to create new instance of MfBool.
Static Method.
If value argument is instance of MfBool then that creates and returns a new MfBool containing the same value.
This method is a static primitive generator.
bObj := MfParams.B(true)
MsgBox % bObj.Value ; Displays 1 for true