<tcBdr> (Table Cell Borders)

This element defines the borders for the cells within a table.

example:
<tcBdr>
  <left>
    <lnRef idx="1">
      <schemeClr val="accent1"/>
    </lnRef>
  </left>
  <right>
    <lnRef idx="1">
      <schemeClr val="accent1"/>
    </lnRef>
  </right>
  <top>
    <lnRef idx="1">
      <schemeClr val="accent1"/>
    </lnRef>
  </top>
  <bottom>
    <lnRef idx="2">
      <schemeClr val="lt1"/>
    </lnRef>
  </bottom>
  <insideH>
    <ln>
      <noFill/>
    </ln>
  </insideH>
  <insideV>
    <ln>
      <noFill/>
    </ln>
  </insideV>
</tcBdr>

In this example, we define borders for the bottom, top, right, and left borders of the table cells. ]

Parent Elements

<tcStyle>5.1.4.2.29)

Child Elements

Subclause

<bottom> (Bottom Border)

§5.1.4.2.6

<extLst> (Extension List)

§5.1.2.1.15

<insideH> (Inside Horizontal Border)

§5.1.4.2.14

<insideV> (Inside Vertical Border)

§5.1.4.2.15

<left> (Left Border)

§5.1.4.2.18

<right> (Right Border)

§5.1.4.2.22

<tl2br> (Top Left to Bottom Right Border)

§5.1.4.2.31

<top> (Top Border)

§5.1.4.2.32

<tr2bl> (Top Right to Bottom Left Border)

§5.1.4.2.33

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_TableCellBorderStyle">
	<sequence>
	<element name="left" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1"/>
	<element name="right" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1"/>
	<element name="top" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1"/>
	<element name="bottom" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1"/>
	<element name="insideH" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1"/>
	<element name="insideV" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1"/>
	<element name="tl2br" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1"/>
	<element name="tr2bl" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1"/>
	<element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
	</sequence>
</complexType>