Double.NegativeInfinity

Syntax

NegativeInfinity: Double;

Description

The NegativeInfinity property returns a value that is equivalent to negative infinity.

Example

Sub UserProc;
Var
    D: Double;
Begin
    D := Double.NegativeInfinity;
End Sub UserProc;

After executing the example the "D" variable contains the value that is equivalent to negative infinity, that is, -1.#INF.

See also:

Double