FieldEncoding Type
Represents how a field value should be encoded/decoded.
Union cases
| Union case |
Description
|
Full Usage:
Bytes
|
Raw bytes (unparsed). |
Full Usage:
Code codeTable
Parameters:
string
|
Code value for lookup in a code table.
|
Full Usage:
Date format
Parameters:
string
|
Date string parsed using the specified format.
|
Full Usage:
Decimal precision
Parameters:
int
|
Numeric string parsed as fixed-point decimal with given precision.
|
Full Usage:
Flag
|
Boolean flag ("1" = true, other = false). |
Full Usage:
Integer
|
Numeric string parsed as int. |
Full Usage:
Text
|
Shift-JIS text with fullwidth→ASCII normalization. |
Full Usage:
TextRaw
|
Shift-JIS text without normalization. |
Instance members
| Instance member |
Description
|
Full Usage:
this.IsBytes
Returns: bool
|
|
Full Usage:
this.IsCode
Returns: bool
|
|
Full Usage:
this.IsDate
Returns: bool
|
|
Full Usage:
this.IsDecimal
Returns: bool
|
|
Full Usage:
this.IsFlag
Returns: bool
|
|
Full Usage:
this.IsInteger
Returns: bool
|
|
Full Usage:
this.IsText
Returns: bool
|
|
Full Usage:
this.IsTextRaw
Returns: bool
|
|
Xanthos