Double.MaxValue

Syntax

MaxValue: Double;

Description

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

Example

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

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

See also:

Double