Double.MinValue

Syntax

MinValue: Double;

Description

The MinValue property returns the minimum value of the Double type.

Example

Sub Main;

Var

d: Double;

Begin

d := Double.MinValue;

End Sub Main;

After executing the example the "D" variable will contain the minimum value of the Double type, that is, 1.79769313486232E+308.

See also:

Double