Max

From Xojo Documentation

Method

Max(value1 as Double, value2 as Double [,...valueN As Double ]) As Double

Supported for all project types and targets.

Returns the largest value passed to it.

Syntax

result=Max(value1, value2 [,...valueN])

Part Type Description
result Double The maximum value of value1 to valueN.
value1 Double The first number for comparison.
value2 Double The second number for comparison.
valueN Double Optional: Max requires two parameters but optionally can take more than two. N is the number of parameters passed.

Notes

The Max function compares two or more numbers and returns the largest of the passed values.

Examples

This example uses the Max function to return the largest of the values passed

Var d As Double
d = Max(3.01, 4.05) // returns 4.05
d = Max(3.012, 3.011, 1.56) // returns 3.012

See Also

Abs, Ceil, Exp, Floor, Min, Pow, Sqrt functions.