Converts an integer expression into a string value.
inttostr( expression ) string value
expression
Integer value to be converted.
This example prints the iterations of a loop.
define(&x,integer,1)
%Define loop variable
for(&x,1,1,10)
%Set up loop
show('Iteration ' + inttostr(&x) )
%Show text
crlf()
%Skip line
endfor()