Definition Type: Element
Name: Row
Namespace: urn:schemas-microsoft-com:office:spreadsheet
Containing Schema: excelss.xsd
MinOccurs 0
MaxOccurs unbounded
Abstract
Documentation:
Defines the formatting and properties for one or more adjacent rows.
Collapse XSD Schema Diagram:
Drilldown into Cell in schema excelss_xsd Drilldown into caption in schema c_xsd Drilldown into StyleID in schema excelss_xsd Drilldown into Span in schema excelss_xsd Drilldown into Index in schema excelss_xsd Drilldown into Hidden in schema excelss_xsd Drilldown into Height in schema excelss_xsd Drilldown into AutoFitHeight in schema excelss_xsdXSD Diagram of Row in schema excelss_xsd (Microsoft Office 2003 Reference Schemas)
Collapse XSD Schema Code:
<xsd:element name="Row" minOccurs="0" maxOccurs="unbounded">
    <xsd:annotation>
        <xsd:documentation>Defines the formatting and properties for one or more adjacent rows.</xsd:documentation>
    </xsd:annotation>
    <xsd:complexType>
        <xsd:sequence>
            <xsd:element ref="Cell" minOccurs="0" maxOccurs="unbounded" />
        </xsd:sequence>
        <xsd:attribute form="qualified" name="AutoFitHeight" type="TrueFalseType" use="optional" default="1">
            <xsd:annotation>
                <xsd:documentation>Specifies whether the height of a row is automatically resized to fit the contents of cells.</xsd:documentation>
            </xsd:annotation>
        </xsd:attribute>
        <xsd:attribute form="qualified" name="Height" use="optional">
            <xsd:annotation>
                <xsd:documentation>Specifies the height of a row in points. This value must be greater than or equal to zero.</xsd:documentation>
            </xsd:annotation>
            <xsd:simpleType>
                <xsd:restriction base="xsd:double">
                    <xsd:minInclusive value="0" />
                </xsd:restriction>
            </xsd:simpleType>
        </xsd:attribute>
        <xsd:attribute ref="Hidden" default="0">
            <xsd:annotation>
                <xsd:documentation>Specifies whether a row is hidden.</xsd:documentation>
            </xsd:annotation>
        </xsd:attribute>
        <xsd:attribute form="qualified" name="Index" type="xsd:positiveInteger" use="optional">
            <xsd:annotation>
                <xsd:documentation>Specifies the position of a row within a table.</xsd:documentation>
            </xsd:annotation>
        </xsd:attribute>
        <xsd:attribute form="qualified" name="Span" type="xsd:nonNegativeInteger" use="optional" default="0">
            <xsd:annotation>
                <xsd:documentation>Specifies the number of adjacent rows with the same formatting as the defined row.</xsd:documentation>
            </xsd:annotation>
        </xsd:attribute>
        <xsd:attribute form="qualified" name="StyleID" type="xsd:IDREF" use="optional">
            <xsd:annotation>
                <xsd:documentation>Contains a reference to an ID attribute previously defined in a Style element. Used to apply that defined style to a row.</xsd:documentation>
            </xsd:annotation>
        </xsd:attribute>
        <xsd:attribute ref="c:caption" use="optional" />
    </xsd:complexType>
</xsd:element>
Collapse Child Elements:
Name Type Min Occurs Max Occurs
Cell ss:Cell 0 unbounded
Collapse Child Attributes:
Name Type Default Value Use
AutoFitHeight ss:AutoFitHeight 1 Optional
Height ss:Height Optional
Hidden ss:Hidden (Optional)
Index ss:Index Optional
Span ss:Span 0 Optional
StyleID ss:StyleID Optional
caption c:caption Optional