docx
    Preparing search index...

    Class TableCellBorders

    Represents table cell borders (tcBorders) in a WordprocessingML document.

    The tcBorders element specifies the borders for a single table cell. Each border can be configured independently with different styles, colors, and widths.

    Reference: http://officeopenxml.com/WPtableCell.php

    <xsd:complexType name="CT_TcBorders">
    <xsd:sequence>
    <xsd:element name="top" type="CT_Border" minOccurs="0"/>
    <xsd:element name="start" type="CT_Border" minOccurs="0"/>
    <xsd:element name="left" type="CT_Border" minOccurs="0"/>
    <xsd:element name="bottom" type="CT_Border" minOccurs="0"/>
    <xsd:element name="end" type="CT_Border" minOccurs="0"/>
    <xsd:element name="right" type="CT_Border" minOccurs="0"/>
    <xsd:element name="insideH" type="CT_Border" minOccurs="0"/>
    <xsd:element name="insideV" type="CT_Border" minOccurs="0"/>
    <xsd:element name="tl2br" type="CT_Border" minOccurs="0"/>
    <xsd:element name="tr2bl" type="CT_Border" minOccurs="0"/>
    </xsd:sequence>
    </xsd:complexType>
    new TableCellBorders({
    top: { style: BorderStyle.SINGLE, size: 6, color: "FF0000" },
    bottom: { style: BorderStyle.SINGLE, size: 6, color: "0000FF" },
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods