IntToString(), I2S()
Summary
Converts an integer to a string representation of the integer value.
Syntax
value_string = IntToString(integer int_value)
| Argument | Contents |
|---|---|
| int_value | Any integer |
Returns
A string representing the value of int_value.
Notes
-
Can also be called as I2S().
Example
n = GetSetCount("Selection")
ShowMessage(i2s(n) + " records are selected.")
See Also
| Function | Summary |
|---|---|
| Format() | Formats a number |
| RealToInt() | Converts a real number to an integer |
| RealToString() | Converts a real number to a string |
| Round() | Returns a value rounded to a specified number of decimal places |
| StringToInt() | Converts a string to an integer value |
| StringToReal() | Converts a string to a real number |