gb.Currency (gb)

Const Currency As Integer = 7

Constant that represents the national currency format.

Example

System.Language = "fr_FR.UTF-8"
Print Format(1234.54643, gb.Currency)
Print Format(1234.10000, gb.Currency)
Print Format(1234.00000, gb.Currency)
Print Format(-1234.56, gb.Currency)
1 234,55 €
1 234,1 €
1 234 €
(1 234,56 €)