Initializes a new instance of the MfBool class.
OutputVar := new MfBool([val, returnAsObj, readonly])
Initializes a new instance of the MfBool class optionally setting the Value property, ReturnAsObject property and Readonly Property.
val
The boolean value to create a new instance with. Represents true or false.
If omitted value is false.
returnAsObj
Determines if the current instance of MfBool class will return MfBool instances from functions or vars containing boolean.
If omitted value is false.
readonly
Determines if the current instance of MfBool 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
Sealed Class
This constructor initializes the MfBool.
Value property to the value of val parameter.
ReturnAsObject property will have a value of returnAsObj
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 false, ReturnAsObject is false and read-only is false
MyBool := new MfBool()
; creates a instance of class with value of false, ReturnAsObject is true and read-only is false
MyBool := new MfBool(, true)
; creates a instance of class with value of false, ReturnAsObject is false and read-only is true
MyBool := new MfBool(true, , true)