IMath.Int

Syntax

Int(Value: Double): Integer;

Parameters

Value. Rounded value.

Description

The Int method rounds the specified number down to the nearest integer.

Comments

Available values range for input parameter [MinInteger; MaxInteger]. MinInteger = -231, MaxInteger = 231 - 1.

If input parameter goes beyond the left border of available values, the method returns MinInteger.

If input parameter goes beyond the right border of available values, the method returns MaxInteger.

Example

To execute the example, add a link to the MathFin system assembly.

Sub UserProc;
Var
    r: Integer;
Begin
    r := Math.Int(8.9);
    Debug.WriteLine(r);
End Sub UserProc;

After executing the example the console window displays the result of rounding to the nearest least integer equal to 8.

See also:

IMath | IMath.Trunc