MaxValue: Double;
The MaxValue property returns the maximum value of the Double type.
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: