Enumeration pvc.options.varia.DimensionValueType
Extends
function.
Field Attributes | Field Name and Description |
---|---|
The "any" value type,
specified as
null,
means that a dimension can hold any type of data.
|
|
The dimension holds
boolean values.
|
|
The dimension holds
date values.
|
|
The dimension holds
number values.
|
|
The dimension holds
object values.
|
|
The dimension holds
string values.
|
Note that, whatever the value type of a dimension type, null is always a supported value.
Values of this type are not cast.
Each value may have a different type.
Dimension types of this value type are discrete.
- Value:
- null
Values of this type are cast by using the standard JavaScript Boolean function.
Dimension types of this value type are discrete.
- Value:
- Boolean
Values of this type are cast by using the standard JavaScript Date constructor.
Dimension types of this value type can be continuous or discrete.
- Value:
- Date
Values of this type are cast by using the standard JavaScript Number function; additionally, resulting NaN values are converted to null.
Dimension types of this value type can be continuous or discrete.
- Value:
- Number
Values of this type are cast by using the standard JavaScript Object function.
Dimension types of this value type are discrete.
- Value:
- Object
Values of this type are cast by using the standard JavaScript String function.
Dimension types of this value type are discrete.
The empty string value is always converted to the null value.
- Value:
- String