Decimal.MinValue

Syntax

MinValue: Decimal;

Description

The MinValue property returns the minimum value of the Decimal type.

Example

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:

Decimal