17.4.78 tr
cells. Table rows in WordprocessingML are
This element specifies a single table row, which contains the table’s analogous to HTML tr elements.
A tr element has one formatting child element, trPr (17.4.81), which defines the properties for the row. Each unique property on the table row is specified by a child element of this element. As well, a table row can contain any row-level content, which allows for the use of table cells.
If a table cell does not include at least one child element other than the row properties, then this document shall be considered corrupt.
[Example: Consider a table consisting of a single table cell, which contains the text Hello,
Hello World
This table row’s content is represented by the following WordprocessingML:
<w:tr>
<w:tc>
<w:tcPr>
<w:tcW w:w="0" w:type="auto"/>
</w:tcPr>
<w:p>
<w:r>
<w:t>Hello, world</w:t>
</w:r>
</w:p>
</w:tc>
</w:tr>
The tr element contains a single row-level element - in this case, a table cell. end example]
Attributes
rsidR (Revision Identifier for Table Row)
Specifies a unique identifier used to track the editing session when the table row was added to the main document.
All rsid* attributes throughout this document with the same value, if present, shall indicate that those regions were modified during the same editing session (time between subsequent save actions).
A producer can choose to increment the revision save ID value to indicate subsequent editing sessions to indicate the order of the modifications relative to other modifications in this document.
The possible values for this attribute are defined by the ST_LongHexNumber simple type (17.18.50).
rsidDel (Revision Identifier for Table Row Deletion)
Specifies a unique identifier used to track the editing session when the row was deleted from the main document.
All rsid* attributes throughout this document with the same value, if present, shall indicate that those regions were modified during the same editing session (time between subsequent save actions).
A producer can choose to increment the revision save ID value to indicate subsequent editing sessions to indicate the order of the modifications relative to other modifications in this document.
The possible values for this attribute are defined by the ST_LongHexNumber simple type (17.18.50).
rsidTr (Revision Identifier for Table Row Properties)
Specifies a unique identifier used to track the editing session when the table row’s properties were last modified in this document.
All rsid* attributes throughout this document with the same value, if present, shall indicate that those regions were modified during the same editing session (time between subsequent save actions).
A producer can choose to increment the revision save ID value to indicate subsequent editing sessions to indicate the order of the modifications relative to other modifications in this document.
The possible values for this attribute are defined by the ST_LongHexNumber simple type (17.18.50).
rsidRPr (Revision Identifier for Table Row Glyph Formatting)
Specifies a unique identifier used to track the editing session when the glyph character representing the table row mark was last modified in the main document.
All rsid* attributes throughout this document with the same value, if present, shall indicate that those regions were modified during the same editing session (time between subsequent save actions).
A producer can choose to increment the revision save ID value to indicate subsequent editing sessions to indicate the order of the modifications relative to other modifications in this document.
The possible values for this attribute are defined by the ST_LongHexNumber simple type (17.18.50).
[Note: The W3C XML Schema definition of this element’s content model (CT_Row) is located in A.1. end note]