Is the variable's value an integer ? The test is regardless of type, so for example a double type variable with a value of 15.0 would return true
A variant value
IsInteger(45.00) => True IsInteger(45.001) => False IsInteger(0) => True IsInteger(Null) => False