Cell Border Properties
The complex type, CT_TableCellBorderStyle, defines the properties of the borders that can be styled in a table. The border styles can be applied to the following different types of borders in a table:
left
– left borderright
– right bordertop
– top borderbottom – bottom border
insideH
– inner horizontal bordersinsideV
– inner vertical borderstl2br
– diagonal border from top left corner to bottom right cornertr2bl
– diagonal border from top right corner to bottom left corner
The complex type is defined in the following manner:
<xsd:complexType name="CT_TableCellBorderStyle"> <xsd:sequence> <xsd:element name="left" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1" /> <xsd:element name="right" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1" /> <xsd:element name="top" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1" /> <xsd:element name="bottom" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1" /> <xsd:element name="insideH" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1" /> <xsd:element name="insideV" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1" /> <xsd:element name="tl2br" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1" /> <xsd:element name="tr2bl" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1" /> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1" /> </xsd:sequence> </xsd:complexType>