Interface ITableCellOptions

interface ITableCellOptions {
    borders?: ITableCellBorders;
    children: readonly (Paragraph | Table)[];
    columnSpan?: number;
    margins?: ITableCellMarginOptions;
    rowSpan?: number;
    shading?: IShadingAttributesProperties;
    textDirection?: "btLr" | "lrTb" | "tbRl";
    verticalAlign?: "bottom" | "center" | "top";
    verticalMerge?: "continue" | "restart";
    width?: ITableWidthProperties;
}

Hierarchy

  • ITableCellPropertiesOptions
    • ITableCellOptions

Properties

children: readonly (Paragraph | Table)[]
columnSpan?: number
margins?: ITableCellMarginOptions
rowSpan?: number
textDirection?: "btLr" | "lrTb" | "tbRl"
verticalAlign?: "bottom" | "center" | "top"
verticalMerge?: "continue" | "restart"

Generated using TypeDoc