Row
The complex type, CT_TableRow, defines a table row. This complex type is somewhat more complex than the similar table column complex type in that it holds a sequence of CT_TableCell structures along with a height for the row. The complex type is defined in the following way:
<xsd:complexType name="CT_TableRow"> <xsd:sequence> <xsd:element name="tc" type="CT_TableCell" minOccurs="0" maxOccurs="unbounded" /> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1" /> </xsd:sequence> <xsd:attribute name="h" type="ST_Coordinate" use="required" /> </xsd:complexType>