[Table of Contents] [docx version]
Shared MLs Reference Material - Math
additionalCharacteristics (Set of Additional Characteristics)
This element is the root element of the Additional Characteristics part and contains the list of additional characteristics for an Office Open XML document.
[Example: The following content in an Additional Characteristics part would specify that the producing spreadsheet 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>
Parent Elements |
Root element of Shared Additional Characteristics part |
Child Elements |
Subclause |
characteristic (Single Characteristic) |
§7.7.2.2 |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_AdditionalCharacteristics">
<sequence>
<element name="characteristic" type="CT_Characteristic" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</complexType>