<trPr> (Table Style Conditional Formatting Table Row Properties)
This element specifies the set of table row properties which shall be applied to all rows within a table which match the conditional formatting type specified on the parent <tblStylePr> element. These properties are applied in the order specified via the style hierarchy.
<w:style w:type="table" w:styleId="exampleTableStyle"> … <w:tblStylePr w:type="firstRow"> <w:trPr> <w:tblHeader/> <w:cantSplit/> </w:trPr> … </w:tblStylePr> </w:style>
The <trPr> element specified within the <tblStylePr> element specifies the set of table row properties which shall be applied to all rows of the table which meet the criteria specified by the @type value of firstRow - all of the header rows of the table. In this example, the table row properties applied are the fact that these rows shall be repeated on each page via the <tblHeader> element (§2.4.46) and the fact that these rows shall not be split across pages using the <cantSplit> element (§2.4.6). ]
| Parent Elements | 
|---|
| 
 | 
| Child Elements | Subclause | 
|---|---|
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | 
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_TrPr">
	<complexContent>
	<extension base="CT_TrPrBase">
	<sequence>
	<element name="ins" type="CT_TrackChange" minOccurs="0"/>
	<element name="del" type="CT_TrackChange" minOccurs="0"/>
	<element name="trPrChange" type="CT_TrPrChange" minOccurs="0"/>
	</sequence>
	</extension>
	</complexContent>
</complexType>