22.7.2.2 characteristic
This element specifies a single characteristic. The type of characteristic is defined by the name attribute.
[Example: A producer can inform the consumer that the computations used to calculate the stored numbers in the formulas belong to a value space expressed by ranges of the binary mantissa and exponent. A consumer can optionally check those characteristics to determine whether, for example, the values should be recalculated. The XML for this would be:
<additionalCharacteristics>
<characteristic name='precisionMantissa' relation='gt'
val='-9007199254740992'/>
<characteristic name='precisionMantissa' relation='lt'
val='9007199254740992'/>
<characteristic name='precisionExponent' relation='ge' val='-1075'/>
<characteristic name='precisionExponent' relation='le' val='970'/>
</additionalCharacteristics>
end example]
Attributes
name (Name of Characteristic)
Specifies the name of the characteristic. There are no constraints on the value of the name attribute, but each name shall be associated with a specific vocabulary via the vocabulary attribute.
The values defined by ISO/IEC 29500 shall be associated with a null vocabulary value, and are as follows:
Name Value
Attributes
Property Specified
Number of Columns supported by the spreadsheet producer.
Number of Rows supported by the spreadsheet producer.
Version of the function specification used
Allowed values of the mantissa of numbers within spreadsheet cells/formulas when expressed in base 2.
Allowed values of the exponent of numbers within spreadsheet cells/formulas when expressed in base 2.
Number of Workbook colors
Number of condition format conditions on a workbook cell
Number of level of sorting on a range or table
Number of items shown in the Auto-filter dropdown
Number of characters that can display in a cell
Number of characters per cell that Excel can print
Number of unique cell styles in a workbook (combinations of all cell formatting)
Length of formulas in characters
Number of levels of formula nesting
Number of arguments to a function
Number of rows in a pivot table
Number of columns in a pivot table
Number of unique items in a pivot field
Number of characters in a MDX name for a pivot table item
String length for a relationship pivot table
Length of field labels in PivotTable including caption length limitations
Number of fields in a pivot table
The number of array formulas in a worksheet that can refer to another (given) worksheet
Attributes
vocabulary (Characteristic Grammar)
Specifies how the contents of the value attribute should be interpreted in the context of this characteristic.
Specifies a URI defining the characteristic grammar with which the name attribute value shall be interpreted.
If this attribute is omitted, then the default grammar (as defined above) shall be used.
The possible values for this attribute are defined by the W3C XML Schema anyURI datatype.
val (Characteristic Value)
Specifies the value of the characteristic.
The possible values for this attribute are defined by the W3C XML Schema string datatype.
relation (Relationship of Value to Name)
[Example: The following would specify that the application supports from 0 to 10,000 columns, and that column ranges should be interpreted accordingly:
<additionalCharacteristics>
<characteristic name="numColumns" relation="le" val="10000"/>
<characteristic name="numColumns" relation="ge" val="0"/>
</additionalCharacteristics>
end example]
The possible values for this attribute are defined by the ST_Relation simple type (22.7.3.1).
[Note: The W3C XML Schema definition of this element’s content model (CT_Characteristic) is located in A.6.7. end note]