Currency.MinValue

Syntax

MinValue: Currency;

Description

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

Example

Sub UserProc;
Var
    c: Currency;
Begin
    c := Currency.MinValue;
End Sub UserProc;

After executing the example the "c" variable contains the minimum value of the Currency type, that is, the value -922337203685477.5808.

See also:

Currency