docx
    Preparing search index...

    Type Alias ITableCellBorders

    Options for configuring table cell borders.

    Defines border settings for individual edges of a table cell. Border settings can be specified for top, bottom, left, right, start, and end edges.

    type ITableCellBorders = {
        bottom?: IBorderOptions;
        end?: IBorderOptions;
        left?: IBorderOptions;
        right?: IBorderOptions;
        start?: IBorderOptions;
        top?: IBorderOptions;
    }
    Index

    Properties

    Border for the bottom edge of the cell

    Border for the end edge (right in LTR, left in RTL)

    Border for the left edge of the cell

    Border for the right edge of the cell

    Border for the start edge (left in LTR, right in RTL)

    Border for the top edge of the cell