Gets or sets the CharCode associated with the this instance of MfChar
OutputVar := instance.CharCode
MfChar.instance := Value
value
Value is a integer and can be var or any type that matches IsIntegerNumber.
Sets the Value to a char that represents the value.
Gets integer as var representing the current Value char that is no less then MinValue and no greater than MaxValue.
Throws MfNotSupportedException on set if Readonly is true.
Throws MfInvalidCastException if value can not be cast to integer
Throws MfArgumentOutOfRangeException if value is less then MinValue or greater then MaxValue
c := new MfChar() ; create a new instance of MfChar class.
c.CharCode := 0x0061
var := c.Value
MsgBox %var% ; displays a
c.CharCode := 70
c.ReturnAsObject := true ; return MfChar object instances on methods it applys to.
var := c.Value
MsgBox %var% ; displays F
c.CharCode := 0x45 ; hex values inf formart of 0x#### are converted into the Unicode a character same as c.CharCode := "0x45"
var := c.Value
MsgBox %var% ; displays E
i := new MfInteger(89) ; create new MfInteger instance
c.CharCode := i ; Set MfInteger as Value and it is converted to char value
var := c.Value
MsgBox %var% ; displays Y