FormatCurrency(Value: Currency): String;
Value. Value converted into string type.
The FormatCurrency method converts the specified value of currency type into string type according to regional standard settings.
Function GetInvariantCurrency(Value: Currency): String;
Var
CI: ICultureInfo;
Begin
CI := CultureInfo.Invariant;
Return CI.FormatCurrency(Value);
End Function GetInvariantCurrency;
The specified function can be used to convert passed values of currency type into string type according to invariant culture settings.
See also: