Changes between Initial Version and Version 1 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/String/IntToStr


Ignore:
Timestamp:
03/21/12 08:52:11 (13 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/String/IntToStr

    v1 v1  
     1= IntToStrTo =
     2Convert integer to string
     3
     4{{{
     5string 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{{{
     22int val = 123;
     23string s = IntToStr(val);
     24DisplayText(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]