[Table of Contents] [docx version]

SpreadsheetML Reference Material - Table of Contents

fonts (Fonts)

This element contains all font definitions for this workbook.

[Example: This example expresses two fonts in the workbook. A Calibri family font, with font size of 11, and an Arial family font, with font size 12. The second font has strikethrough applied.

<fonts count="2">
<font>
<sz val="11"/>
<color theme="1"/>
<name val="Calibri"/>
<family val="2"/>
<scheme val="minor"/>
</font>

<font>
<strike/>
<sz val="12"/>
<color theme="1"/>
<name val="Arial"/>
<family val="2"/>
</font>
</fonts>

end example]

Parent Elements

styleSheet3.8.39)

 

Child Elements

Subclause

font (Font)

§3.8.21

 

Attributes

Description

count (Font Count)

Count of font elements.

 

The possible values for this attribute are defined by the XML Schema unsignedInt datatype.

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Fonts">

   <sequence>

   <element name="font" type="CT_Font" minOccurs="0" maxOccurs="unbounded"/>

   </sequence>

   <attribute name="count" type="xsd:unsignedInt" use="optional"/>

</complexType>