17.4.82 trPr

This element specifies a previous set of table cell properties, the modifications to which shall be attributed to a revision by a particular author and at a particular time. This element contains the table cell property settings which were previously in place before a specific set of revisions by one author. 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 can be overridden by individual cell-level properties, as defined by each property.

[Example: Consider the following WordprocessingML table:

Some text in R1C1.

This table has a row height for row one of exactly 0.1". If we change that to a row height of at least 0.1" with revision marking enabled, the table would appear as follows:

Some text in R1C1.

The resulting WordprocessingML would be:

<w:tr>
  <w:trPr>
    <w:trHeight w:val="144"/>
    <w:trPrChange w:id="2"  >
      <w:trPr>
        <w:trHeight w:hRule="exact" w:val="144"/>
      </w:trPr>
    </w:trPrChange>
  </w:trPr>
</w:tr>

The trPr element as a child of trPrChange specifies the set of table row properties which were in place before the current revision to the document. end example]

[Note: The W3C XML Schema definition of this element’s content model (CT_TrPrBase) is located in A.1. end note]

Last updated on