DataType enumerates the kinds of data a field can contain.
Constants
| Constant | Supported field types | Description |
|---|---|---|
| Amount | Text | A sum of money. Field.Value is an instance of AmountOfMoney. |
| Binary | Picture | A binary value. Cannot be accessed directly via Field.Value. |
| Boolean | Checkmark | A boolean value describing the state of a checkmark (marked, not marked). |
| Choice | CheckmarkGroup | Describes the state of checkmarks in a checkmark group. Cannot be accessed directly via Field.Value. |
| Date | Text | Stores a date and time. Field.Value is a JavaScript Date object. |
| Number | Text | A numeric type supporting integers and floating-point numbers. |
| None | Table, Enum, Group | Indicates the absence of a value. |
| Text | Text | A text (string) data type. Can contain alphanumeric and special characters. |
AmountOfMoney
Stores a currency amount and its symbol.Properties
| Name | Type | Access level | Description |
|---|---|---|---|
| Amount | decimal | Read-only | The numeric value of the amount. |
| CurrencySign | string | Read-only | The currency symbol or name in text format (for example, € or EURO). |
