I()

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

I()

OutputVar := MfParams.I(value)

I(value)

Creates a new MfInteger object containing value

Parameters

value

The var with the new MfInteger value.

Returns

Returns an MfInteger instance containing value

Throws

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

Remarks

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

Example

int := MfParams.I(10)
MsgBox % int.Value ; Displays 10