| Returns the integer portion of a number. |
| value = any valid variable or number |
Command Description:
| Returns the integer value of an expression or value. Use this to convert a floating point number to a straight integer value. See Example. |
Example:
| ; Int Example myNum#=3.14 Print "The integer value of " + mynum# + " is: " + Int(myNum#) |