RichFieldValue Type
Represents a parsed field value with explicit missing indicators.
This variant distinguishes between "value is 0" and "value is missing/blank", which is important for some JV-Data fields where zero has meaning.
Union cases
| Union case |
Description
|
Full Usage:
RBool bool
Parameters:
bool
|
Boolean flag value.
|
Full Usage:
RBytes byte[]
Parameters:
byte[]
|
Raw byte array.
|
Full Usage:
RCode string
Parameters:
string
|
Code table lookup value.
|
|
Parsed date value.
|
Full Usage:
RDateMissing
|
Date field was blank or all zeros. |
Full Usage:
RDecimal decimal
Parameters:
decimal
|
Parsed decimal value.
|
Full Usage:
RDecimalMissing
|
Decimal field was blank or unparseable. |
Full Usage:
RInt int
Parameters:
int
|
Parsed integer value.
|
Full Usage:
RIntMissing
|
Integer field was blank or unparseable. |
Full Usage:
RText string
Parameters:
string
|
Parsed text string.
|
Instance members
| Instance member |
Description
|
Full Usage:
this.IsRBool
Returns: bool
|
|
Full Usage:
this.IsRBytes
Returns: bool
|
|
Full Usage:
this.IsRCode
Returns: bool
|
|
Full Usage:
this.IsRDate
Returns: bool
|
|
Full Usage:
this.IsRDateMissing
Returns: bool
|
|
Full Usage:
this.IsRDecimal
Returns: bool
|
|
Full Usage:
this.IsRDecimalMissing
Returns: bool
|
|
Full Usage:
this.IsRInt
Returns: bool
|
|
Full Usage:
this.IsRIntMissing
Returns: bool
|
|
Full Usage:
this.IsRText
Returns: bool
|
|
Xanthos