MinValue: Double;
The MinValue property returns the minimum value of the Double type.
Sub UserProc;
Var
D: Double;
Begin
D := Double.MinValue;
End Sub UserProc;
After executing the example the "D" variable contains the minimum value of the Double type, that is, 1.79769313486232E+308.
See also: