17.4.58 tblPr

This element specifies a previous set of table 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 property settings which were previously in place before a specific set of revisions by one author. These properties affect the appearance of all rows and cells within the parent table, but can be overridden by individual table-level exception, row, and cell level properties, as defined by each property.

[Example: Consider the following simple WordprocessingML table:

If the table justification is set to center and the table shading to set to red with revision marking on, as follows:

The revision tracked on this table would be specified as follows in the WordprocessingML:

<w:tblPr>
  <w:tblStyle w:val="TableGrid"/>
  <w:tblW w:w="0" w:type="auto"/>
  <w:jc w:val="center"/>
  <w:shd w:val="clear" w:color="auto" w:fill="FF0000"/>
  <w:tblLook w:firstRow="true" w:firstColumn="true"
    w:noVBand="true" />
  <w:tblPrChange w:id="0"  >
    <w:tblPr>
      <w:tblStyle w:val="TableGrid"/>
      <w:tblW w:w="0" w:type="auto"/>
      <w:tblLook w:firstRow="true" w:firstColumn="true"
      w:noVBand="true" />
    </w:tblPr>
  </w:tblPrChange>
</w:tblPr>

The tblPr element as a child of tblPrChange contains the previous definition for the table properties, consisting of the properties set before the current tracked revision. end example]

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

Last updated on