DocumentID: ECMA-376/Part4/2.4.67 Title: ECMA-376, Part4: 2.4.67 tcPr (Table Cell Properties) Extracted-From: ECMA-376 Office Open XML File Formats, 1st Edition / December 2006 Warning: Coverted to HTML format by a script known to have bugs
This element specifies the set of properties which shall be applied a specific table cell. Each unique property is specified by a child element of this element. In any instance where there is a conflict between the table level, table-level exception, or row level properties with a corresponding table cell property, these properties shall overwrite the table or row wide properties.
[Example: Consider a table where the cell width overwrites the table width represented in the following WordprocessingML:
<w:tbl>
<w:tblPr>
<w:tblCellMar>
<w:left w:w="0" w:type="dxa"/>
</w:tblCellMar>
</w:tblPr>
<w:tr>
<w:tc>
<w:tcPr>
<w:tcMar>
<w:left w:w="720" w:type="dxa"/>
</w:tcMar>
</w:tcPr>
...
</w:tc>
</w:tr>
</w:tbl>
This table cell will have a left cell margin of 720 twentieths of a point (one half inch) as specified in the tcMar element, which overwrites the table level setting of 0 left table cell margin. end example]
|
Parent Elements |
|
tc (§2.4.62) |
|
Child Elements |
Subclause |
|---|---|
|
cellDel (Table Cell Deletion) |
|
|
cellIns (Table Cell Insertion) |
|
|
cellMerge (Vertically Merged/Split Table Cells) |
|
|
cnfStyle (Table Cell Conditional Formatting) |
|
|
gridSpan (Grid Columns Spanned by Current Table Cell) |
|
|
hideMark (Ignore End Of Cell Marker In Row Height Calculation) |
|
|
hMerge (Horizontally Merged Cell) |
|
|
noWrap (Don't Wrap Cell Content) |
|
|
shd (Table Cell Shading) |
|
|
tcBorders (Table Cell Borders) |
|
|
tcFitText (Fit Text Within Cell) |
|
|
tcMar (Single Table Cell Margins) |
|
|
tcPrChange (Revision Information for Table Cell Properties) |
|
|
tcW (Preferred Table Cell Width) |
|
|
textDirection (Table Cell Text Flow Direction) |
|
|
vAlign (Table Cell Vertical Alignment) |
|
|
vMerge (Vertically Merged Cell) |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_TcPr">
<complexContent>
<extension base="CT_TcPrInner">
<sequence>
<element name="tcPrChange" type="CT_TcPrChange" minOccurs="0"/>
</sequence>
</extension>
</complexContent>
</complexType>