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