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