[Table of Contents] [docx version]
Error! No text of specified style in document.
This element defines a row in a table. A row as defined in a table is simply a listing of table cells (§5.1.6.14). There will be a table row element defined for every row in the table.
[Example: Consider the following example of a tr within DrawingML:
<a:tr h="774700">
<a:tc>
<a:txBody>
<a:bodyPr/>
<a:lstStyle/>
<a:p>
<a:endParaRPr lang="en-US" dirty="0"/>
</a:p>
</a:txBody>
<a:tcPr/>
</a:tc>
…
</a:tr>
In this example, we see a table row defined with an example table cell (§5.1.6.14) defined within it. The height of the row has been specified and in real use, there will be a table cell defined in this row for each grid column (§5.1.6.2) defined in the table. end example]
Parent Elements |
tbl (§5.1.6.11) |
Child Elements |
Subclause |
extLst (Extension List) |
§5.1.2.1.15 |
tc (Table Cell) |
§5.1.6.14 |
Attributes |
Description |
h (Height) |
Defines the height of the row in the table.
The possible values for this attribute are defined by the ST_Coordinate simple type (§5.1.12.16). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_TableRow">
<sequence>
<element name="tc" type="CT_TableCell" minOccurs="0" maxOccurs="unbounded"/>
<element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
</sequence>
<attribute name="h" type="ST_Coordinate" use="required"/>
</complexType>