<xsd:complexType name="StyleType">
<xsd:annotation>
<xsd:documentation>Defines a single style in the current workbook. This element is required for custom formatting; otherwise, it is optional.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Alignment" type="AlignmentType" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Specifies the font alignment attributes to use for cells to which the defined style is applied.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Borders" type="BordersType" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Defines the border properties to use for cells to which the defined style is applied.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Font" type="FontType" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Defines the font characteristics to use for cells to which the defined style is applied.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Interior" type="InteriorType" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Defines the fill properties to use for cells to which the defined style is applied.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="NumberFormat" type="NumberFormatType" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Defines the number format to use for cells to which the defined style is applied.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Protection" type="ProtectionType" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Defines the protection properties of cells to which the defined style is applied.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:attribute form="qualified" name="ID" type="xsd:ID" use="required">
<xsd:annotation>
<xsd:documentation>Defines a name that identifies a particular style. The special value of "Default" indicates that this style represents the default formatting in the workbook.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute form="qualified" name="Name" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Specifies the name for a defined style. Duplicate names for different styles are not permitted.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute form="qualified" name="Parent" type="xsd:IDREF" use="optional">
<xsd:annotation>
<xsd:documentation>Specifies a parent style from which the defined style should inherit format settings.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
|