Gets or sets the if the derived class will return objects as their return value for various functions
OutputVar := instance.ReturnAsObject
instance.ReturnAsObject := Value
Value
Boolean representing true or false. Can be var or instance of MfBool.
Gets if the derived instance will return object instances as their return value for various functions or vars.
The default value is false.
Sets if the if derived instance will return object instances as their return value for various functions or vars.
The default value is false
The set value is returned on successful value.
str := new MfString("Hello World") ; Create a new instance of the MfString Class
objB := new MfBool(True)
OutputVar := str.ReturnAsObject := objB
MsgBox %OutputVar% ; displays 1 for true
Throws MfInvalidCastException if value is not a valid boolean var or object.
In derived classes if this property is set to true then the derived class will return an an object such as MfString or MfChar or MfInteger etc. If false the derived class will return vars (non objects) containing their respective values