<tr>
(Table Row)
This element specifies a single table row, which contains the table’s cells. Table rows in WordprocessingML are analogous to HTML tr
elements.
A <tr>
element has one formatting child element, <trPr (>
§2.4.78<)>
, 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 valid 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.
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. ]
Child Elements |
Subclause |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Attributes |
Description |
---|---|
|
Specifies a unique identifier used to track the editing session when the row was deleted from the main document. All A producer may 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 (§2.18.57). |
|
Specifies a unique identifier used to track the editing session when the table row was added to the main document. All A producer may 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 (§2.18.57). |
|
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 A producer may 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 (§2.18.57). |
|
Specifies a unique identifier used to track the editing session when the table row's properties were last modified in this document. All A producer may 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 (§2.18.57). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_Row">
<sequence>
<element name="tblPrEx" type="CT_TblPrEx" minOccurs="0" maxOccurs="1"/>
<element name="trPr" type="CT_TrPr" minOccurs="0" maxOccurs="1"/>
<group ref="EG_ContentCellContent" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute name="rsidRPr" type="ST_LongHexNumber"/>
<attribute name="rsidR" type="ST_LongHexNumber"/>
<attribute name="rsidDel" type="ST_LongHexNumber"/>
<attribute name="rsidTr" type="ST_LongHexNumber"/>
</complexType>