ASCIIChr (Magic xpi 4.13)
Converts a number to a corresponding character in the ASCII character set.
Syntax:
|
ASCIIChr(Numeric number)
|
Parameter:
|
number: Any number.
|
Returns:
|
Alpha.
|
Examples:
|
ASCIIChr(78) returns 'N' (ASCII code 78)
|
|
Where the variable X contains 77, ASCIIChr(X+1) returns 'N'.
|
Note:
|
Use this function to display characters that have no keyboard equivalent. For example, ASCIIChr(26) displays the right arrow character.
|
See also:
|
ASCIIVal
|