w:trPrChange (Revision — Table Row Properties Change)

Records a tracked change to a table row's properties, storing the previous row property state before the revision.

Parent elements

Child elements

Description

w:trPrChange is a revision tracking element that captures the previous state of w:trPr when table row properties are changed with change tracking enabled. The current w:trPr represents the accepted (new) properties; w:trPrChange holds the original properties.

It is defined in ECMA-376 Part 1 §17.13.7.5.

Attributes

Attribute Type Possible Values Description
w:id xsd:integer Positive integer Unique revision ID within the document.
w:author xsd:string Any string Author name.
w:date xsd:dateTime ISO 8601 date-time Timestamp of the change.

Child Elements

Element Description
w:trPr The original row properties before the tracked change.

Examples

<w:trPr>
  <w:trHeight w:val="600" w:hRule="exact"/>
  <w:trPrChange w:id="5" w:author="Alice" w:date="2024-04-01T08:30:00Z">
    <w:trPr>
      <w:trHeight w:val="400" w:hRule="exact"/>
    </w:trPr>
  </w:trPrChange>
</w:trPr>

Notes

  • w:trPrChange must be the last child element of w:trPr.
  • Works identically to w:tblPrChange and w:tcPrChange but scoped to row-level properties.