Double.MaxValue

Syntax

MaxValue: Double;

Description

The MaxValue property returns the maximum value of the Double type.

Example

Sub Main;

Var

D: Double;

Begin

D := Double.MaxValue;

End Sub Main;

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

See also:

Double