NumToString- Converts number to string
Function that converts the number passed as parameter in the relative string containing its textual representation.
- NumToString(N): string
Parameters:
- (num) N: Integer or floating point number to be converted into a string.
Description:
Use the NumToString function to convert the N-number into its text representation. The N parameter can be an integer or floating point number.
Examples:
// Stores the textual representation of the number in the variable S
S = NumToString(1234.5)
MsgBox(S)