Defines a row in a table.
| Namespace | http://schemas.microsoft.com/office/word/2003/wordml | 
| Schema name | XML Document 2003 | 
| Element | Description | 
|---|---|
| tblPrEx | Represents exceptions to the table properties, which generally apply to every row in the table. For example, a row can have its own set of table properties, which override the table-wide properties. These exceptions are found under this element. | 
| trPr | Represents the table row properties. | 
| tc | Represents the table cell element; analogous to HTML <td> tag. | 
None.
      
<xsd:complexType name="rowElt" >
  <xsd:sequence>
    <xsd:element name="tblPrEx" type="tblPrExElt" minOccurs="0" maxOccurs="1">
    </xsd:element>
    <xsd:element name="trPr" type="trPrElt" minOccurs="0" maxOccurs="1">
    </xsd:element>
    <xsd:choice minOccurs="1" maxOccurs="unbounded">
      <xsd:element name="tc" type="tcElt" minOccurs="0" maxOccurs="unbounded">
      </xsd:element>
      <xsd:group ref="runLevelElts"></xsd:group>
      <xsd:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="skip"></xsd:any>
    </xsd:choice>
  </xsd:sequence>
</xsd:complexType>