docx
    Preparing search index...

    Type Alias ITableRowPropertiesOptionsBase

    type ITableRowPropertiesOptionsBase = {
        cantSplit?: boolean;
        cellSpacing?: ITableCellSpacingProperties;
        height?: {
            rule: typeof HeightRule[keyof typeof HeightRule];
            value: number | PositiveUniversalMeasure;
        };
        tableHeader?: boolean;
    }
    Index

    Properties

    cantSplit?: boolean

    Whether the row can be split across pages (cantSplit)

    cellSpacing?: ITableCellSpacingProperties

    Spacing between cells in the row (tblCellSpacing)

    height?: {
        rule: typeof HeightRule[keyof typeof HeightRule];
        value: number | PositiveUniversalMeasure;
    }

    Row height configuration (trHeight)

    Type Declaration

    tableHeader?: boolean

    Whether the row should be repeated as a header row on each page (tblHeader)