IntToStr |
Top Previous Next |
Prototype
StrOutput:= IntToStr(intInput)
Description
Transforming the integer passed as parameter into string.
Parameters
IntInput: integer value to be transformed into string.
Returned value
StrOutput: it contains the converted number into string.
Notes
the parameter IntInput has to be a number of integer type, namely, between -32768 e 32767.
Example
// This returns the string 10 strValue:=IntToStr(10);
|