Double.Round

Syntax

Round(Value: Double): Double;

Parameters

Value. The real value that must be rounded.

Description

The Round method rounds a real value passed as the Value input parameter to an integer.

Comments

Executing the example results in a real value.

Example

Sub UserProc;
Var
    D: Double;
Begin
    D := 234.234;
    D := Double.Round(D);
End Sub UserProc;

After executing the example the "D" variable contains the 234 value.

See also:

Double