| | 1 | = IntToStrTo = |
| | 2 | Convert integer to string |
| | 3 | |
| | 4 | {{{ |
| | 5 | string IntToStr(int val); |
| | 6 | }}} |
| | 7 | |
| | 8 | == Parameters == |
| | 9 | |
| | 10 | * val - numeric value |
| | 11 | |
| | 12 | == Return Value == |
| | 13 | |
| | 14 | * Returns the string representation of the number |
| | 15 | |
| | 16 | == Remarks == |
| | 17 | |
| | 18 | |
| | 19 | == Example == |
| | 20 | |
| | 21 | {{{ |
| | 22 | int val = 123; |
| | 23 | string s = IntToStr(val); |
| | 24 | DisplayText(0, 0, s); |
| | 25 | }}} |
| | 26 | |
| | 27 | |
| | 28 | == See Also == |
| | 29 | |
| | 30 | * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/String/StrToFloat StrToFloat] |
| | 31 | * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/String/StrFmt StrFmt] |