Round

From Xojo Documentation

Method

Round(value as Double) As Double

Supported for all project types and targets.

Returns the passed value rounded to the nearest whole number.

Syntax

result = Round (value)

Part Type Description
result Double The rounded value. Although result is typed as a Double, it actually contains an integer value.
value Double The value you want to round.

Notes

The result of this function is a Double, but it will always contain a whole number.

The method used to round is chosen by the operating system and the results may vary from platform to platform when the number to be rounded is exactly halfway between two whole numbers.

Examples

This example uses the Round function to return a rounded number

Var d As Double
d = Round(1.499) // returns 1
d = Round(1.500) // returns 2

For examples of how to round a decimal number to a certain number of decimal places, see the Floor and/or Ceil functions.

See Also

Ceil, Floor, Xojo.Math.Round functions.