Initializes a new instance of the MfFloat class.
OutputVar := new MfFloat([flt, returnAsObj, readonly, format])
Initializes a new instance of the MfFloat class optionally setting the Value property, ReturnAsObject property, Readonly and Format property property.
flt
The object or var containing Float to create a new instance with.
Can be any type that matches IsNumber.
returnAsObj
Determines if the current instance of MfFloat class will return MfFloat instances from functions or vars containing float. If omitted value is false
readonly
Determines if the current instance of MfFloat class will allow its Value to be altered after it is constructed.
The Readonly property will reflect this value after the classes is constructed.
If omitted value is false
format
The value to set the Format property to.
Sealed Class.
This constructor initializes the MfFloat with Value property set to the value of flt.
ReturnAsObject will have a value of returnAsObj
Format property will have a value of format.
Readonly property will have a value of readonly.
If Readonly is true then any attempt to change the underlying value will result in MfNotSupportedException being thrown.
Throws MfNotSupportedException if class is extended.
Throws MfArgumentException if error in parameter.
Throws MfNotSupportedException if incorrect type of parameters or incorrect number of parameters.
; creates a default instance of class with value of 0,
; ReturnAsObject is false and read-only is false
; Format is "0.6"
MyFloat := new MfFloat()
; creates a instance of class with value of 566.778,
; ReturnAsObject is false and read-only is false
; Format is "0.6"
MyFloat := new MfFloat(566.778)
; creates a instance of class with value of 566.778,
; ReturnAsObject is false and read-only is false
; Format is "0.2"
MyFloat := new MfFloat(566.778, , ,"0.2")
; creates a instance of class with value of 566.778,
; ReturnAsObject is false and read-only is true
; Format is "0.6"
MyFloat := new MfFloat(566.778, , true)
; creates a instance of class with value of 566.778,
; ReturnAsObject is true and read-only is true
; Format is "10.5"
MyFloat := new MfFloat(566.778, true, true, "10.5")