MinValue: Decimal;
The MinValue property returns the minimum value of the Decimal type.
Sub Main;
Var
d: Decimal;
Begin
d := Decimal.MinValue;
End Sub Main;
After executing the example the "d" variable will contain the minimum value of the Decimal type, that is, -7.922816E+28.
See also: