toInt
Description
Tries to coerce value into an integer (32-bit integer). If value is a number, the conversion is direct (with possible loss of precision). If value is a string, it is parsed to see if it represents an integer. If not, type casting fails. Will round if appropriate.
Syntax
toInt( value, [failover] )
Examples
toInt(
"38"
)
//returns 38
toInt(
"33.9"
)
// returns 34
toInt({Root Container.TextField.text}, -
1
)
//returns the value in the text box as an int, or -1 if the value doesn't represent an number.