Xojo.Math.Floor
From Xojo Documentation
Method
Returns the value rounded down to the nearest whole number.
Sample Code
The floor of a decimal number:
Because Floor will always return a whole number, to round a decimal value to a certain number of places, you must first multiple the number by 10^(the number of decimal places to which you wish to round) then take the value returned by Floor of that number and divide it by 10^(the number of decimal places to which you wish to round). In this example, the value 1.2345 is being rounded to two decimal places: