MinValue: Decimal;
The MinValue property returns the minimum value of the Decimal type.
Sub UserProc;
Var
d: Decimal;
Begin
d := Decimal.MinValue;
Debug.WriteLine("Minimum value of the Decimal value:" + d.ToString);
End Sub UserProc;
After executing the example the console displays the minimum value of the Decimal type, that is, -7.922816E+28.
See also: