FromCharCode()

Namespace ›› System ›› MfChar ›› Methods ››
Parent Previous Next

FromCharCode()

Get a new instance of MfChar from an integer char value

OutputVar := MfChar.FromCharCode(charCode)

MfChar.FromCharCode(charCode)

Get a new instance of MfChar from an integer char value

Parameters

charCode

The integer char code to create instance with

Returns

Returns a new instance of MfChar that represents the value of charCode.

Throws

Throws MfArgumentOutOfRangeException if value is less then MinValue or greater then MaxValue
Throws MfInvalidOperationException if not called as a static method.
Throws MfArgumentException if argument charCode is can not be converted to integer value.

Remarks

Static method

Since

Version 0.4

Example

MsgBox % MFChar.FromCharCode(107).ToString() ; k

c := MFChar.FromCharCode(0x67)
MsgBox % c.ToString() ; g