Sqrt

From Xojo Documentation

Method

Sqrt(value as Double) As Double

Supported for all project types and targets.

Returns the square root of the value specified.

Syntax

result=Sqrt (value)

Part Type Description
value Double The value you want the square root of.
result Double The square root of the value.

Notes

The Sqrt function returns the square root of the value passed to it.

Examples

This example uses the Sqrt function to return the square root of a number.

Var d As Double
d = Sqrt(16) // returns 4

See Also

^, * operators.