Gets or sets the value associated with the this instance of MfBool.
Overrides MfPrimitive.Value.
OutputVar := instance.Value
instance.Value := Value
value
Value is a boolean value and can be var
Can be any object of the matches type IsNumber, MfString or MfChar
Set the Value of the instance. Can be MfBool instance or var containing boolean.
Gets boolean Value as var
When setting the property if the value used to set is numeric then then Value will be true if the number is greater then zero; Otherwise false.
Value is Set using the GetValue() method and therefore can be set to any Object or var that is accepted by GetValue().
Throws MfNotSupportedException when trying to set if Readonly is true.
b := new MfBool()
MsgBox % b.IsTrue?"True":"False" ; displays False
MsgBox % b.IsFalse?"True":"False" ; displays True
MsgBox % b.Value?"True":"False" ; displays False
b.Value := true
MsgBox % b.IsTrue?"True":"False" ; displays True
MsgBox % b.IsFalse?"True":"False" ; displays False
MsgBox % b.Value?"True":"False" ; displays True
b.Value := 0
MsgBox % b.IsTrue?"True":"False" ; displays False
MsgBox % b.IsFalse?"True":"False" ; displays True
MsgBox % b.Value?"True":"False" ; displays False
b.Value := 7
MsgBox % b.IsTrue?"True":"False" ; displays True
MsgBox % b.IsFalse?"True":"False" ; displays False
MsgBox % b.Value?"True":"False" ; displays True
b.Value := -7
MsgBox % b.IsTrue?"True":"False" ; displays False
MsgBox % b.IsFalse?"True":"False" ; displays True
MsgBox % b.Value?"True":"False" ; displays False
b.Value := 7.89
MsgBox % b.IsTrue?"True":"False" ; displays True
MsgBox % b.IsFalse?"True":"False" ; displays False
MsgBox % b.Value?"True":"False" ; displays True
b.Value := -7.89
MsgBox % b.IsTrue?"True":"False" ; displays False
MsgBox % b.IsFalse?"True":"False" ; displays True
MsgBox % b.Value?"True":"False" ; displays False
objI := new MfInteger(4572)
b.Value := objI
MsgBox % b.IsTrue?"True":"False" ; displays True
MsgBox % b.IsFalse?"True":"False" ; displays False
MsgBox % b.Value?"True":"False" ; displays True
objI := new MfInteger(-4572)
b.Value := objI
MsgBox % b.IsTrue?"True":"False" ; displays False
MsgBox % b.IsFalse?"True":"False" ; displays True
MsgBox % b.Value?"True":"False" ; displays False
b.Value := "false"
MsgBox % b.IsTrue?"True":"False" ; displays False
MsgBox % b.IsFalse?"True":"False" ; displays True
MsgBox % b.Value?"True":"False" ; displays False
b.Value := "true"
MsgBox % b.IsTrue?"True":"False" ; displays True
MsgBox % b.IsFalse?"True":"False" ; displays False
MsgBox % b.Value?"True":"False" ; displays True