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