Gets or sets the value associated with the derived MfEnum class.
OutputVar := MfEnum.Value
MfEnum.Value := Value
Value
Integer var or object representing integer.
Can be any object that matches type IsIntegerNumber.
Gets an Integer var that represents then current Value.
Sets the Value of the derived MfEnum class
Can be var containing intege or any object that matches type IsIntegerNumber.
When property is set the new Value is returned. See example below
In derived classes this property gets the value associated with the instance.
myEnum := new MfNumberStyles(MfNumberStyles.Instance.AllowDecimalPoint) ; myEnum.Value will be 32
myOthEnum := new MfNumberStyles(MfNumberStyles.Instance.AllowParentheses) ; myOthEnum.Value will be 16
myEnum.Value := MfNumberStyles.Instance.Any ; myEnum.Value will be 515
myEnum.Value := myOthEnum ; myEnum.Value will be 16
; the MfEnum.Value property returns its current value after it is set and thus can be written as shown below
myvar := (myEnum.Value := myOthEnum) ; myvar will contain the new value myEnum.Value which is 16 in this case
MsgBox %myvar% ; Displays message box with message of 16
myint := new MfInteger(111)
myEnum.Value := myint ; myEnum.Value will be 111
myvar := (myEnum.Value := myint) ; myEnum.Value will be 111 and myvar will be 111
myEnum.Value := "0x80" ; hex can be assigned as well myEnum.Value will be 128
; Throws MfInvalidCastException when unable to convert value to integer
; the following will throw an error
try {
myvar := (myEnum.Value := "abc")
MsgBox %myvar%
} catch e {
MsgBox % e.Message
}
ExitApp