Currency.MaxValue

Syntax

MaxValue: Currency;

Description

The MaxValue property returns the maximum value of the Currency type.

Example

Sub Main;

Var

c: Currency;

Begin

c := Currency.MaxValue;

End Sub Main;

After executing the example the "c" variable will contain the maximum value of the Currency type, that is, the value 922337203685477.5807.

See also:

Currency