Chr |
Top Previous Next |
Prototype
StrChar:=Chr(intASCII)
Description
Converts an ASCII code in character.
Parameters
IntASCII: integer value corresponding to the ASCII Code to convert
Returned value
StrChar: string corresponding to converted value
Notes
None.
Example
// It adds a carriage return Message:='Hello World !'+ Chr(13);
//It logs Message value ApplicationLog(Message); |