sheetex - v1.3.0
    Preparing search index...

    Interface SheetOptions

    工作表选项

    const options: SheetOptions = {
    mergeCells: ['A1:B2', 'C2:F8'],
    colWidths: [{min: 1, max: 5, size: 20}],
    rowHeights: [{min: 1, max: 5, size: 20}]
    }
    interface SheetOptions {
        mergeCells?: string[];
        colWidths?: Size[];
        rowHeights?: Size[];
    }
    Index

    Properties

    mergeCells?: string[]

    需要合并的范围

    []
    
    colWidths?: Size[]

    工作表列宽定义

    []
    
    rowHeights?: Size[]

    工作表行高定义

    []