w:trPr (Table Row Properties)
Contains formatting properties that apply to the entire table row.
Parent elements
Child elements
Description
w:trPr is the table row properties container, grouping all row-level formatting for a w:tr. It is defined in ECMA-376 Part 1 §17.4.82.
Common children include w:trHeight (row height), w:tblHeader (repeat as header), w:cantSplit (prevent row from breaking across pages), and w:ins/w:del (revision tracking at the row level).
Attributes
| Attribute | Type | Possible Values | Description |
|---|---|---|---|
| (none) | — | — | Properties are expressed exclusively through child elements. |
Examples
<w:trPr>
<w:trHeight w:val="600"/>
<w:tblHeader/>
</w:trPr>
new TableRowProperties(
new TableRowHeight { Val = 600U },
new TableHeader());