B()

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

B()

OutputVar := MfParams.B(value)

B(value)

Creates a new MfBool object containing value

Parameters

value

The var with the new boolean value.

Returns

Returns an MfBool instance containing value

Throws

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.

Remarks

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.

Example

bObj := MfParams.B(true)
MsgBox % bObj.Value ; Displays 1 for true