[]
Defines the placement of commas and periods in numbers.
public enum Field.NumberSeparatorStyle
ApostropheDot = 4
Use apostrophe as the thousands separator, dot (period) as the decimal separator, e.g. 1'234.56.
Comma = 3
Use comma as the decimal separator, no thousands separator, e.g. 1234,56.
CommaDot = 0
Use comma as the thousands separator, dot (period) as the decimal separator, e.g. 1,234.56.
Dot = 1
Use dot (period) as the decimal separator, no thousands separator, e.g. 1234.56.
DotComma = 2
Use dot (period) as the thousands separator, comma as the decimal separator, e.g. 1.234,56.