Skip to main content
Version: 8.1

toInteger

This function is used by Ignition's Expression language.

Description​

Identical to the toInt expression function.

Syntax​

toInteger(value, [failover])

Parameters​

TypeParameterDescription
ObjectvalueThe value to type cast.
ObjectfailoverThe failover value if type casting fails. [optional]

Results​

Integer - The value type cast as an int.

Examples​

Code Snippet
toInteger("38") //returns 38
Code Snippet
toInteger("33.9") // returns 34
Code Snippet
toInteger({Root Container.TextField.text}, -1) //returns the value in the text box as an int, or -1 if the value doesn't represent a number.