<trPr>
(Table Row Properties)
This element specifies the set of row-level properties applied to the current table row. Each unique property is specified by a child element of this element. These properties affect the appearance of all cells in the current row within the parent table, but may be overridden by individual cell-level properties, as defined by each property.
Some text in R1C1. |
|
The first row shall have a table-row level property which specifies that it shall be restricted to 0.1 inches high (144 twentieths of a point) regardless of its contents, that would be specified using the <trHeight>
element as follows:
<w:trPr> <w:trHeight w:val="144" w:hRule="exact"/> … </w:trPr>
The <trPr>
element specifies the set of table row properties applied to the current table row in the document, in this case a row height requirement using the <trHeight>
element (§2.4.77). ]
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>