sheetex - v1.3.0
    Preparing search index...

    Type Alias DataBlock

    数据块

    包含数据行组成的数组和一个起始地址

    const block = {
    origin: 'A1',
    data: [
    ['hello', 82],
    [{value: 'hello', style: 'bold'}, 'world']
    ]
    };
    type DataBlock = {
        origin: string;
        data: DataRow[];
    }
    Index

    Properties

    Properties

    origin: string

    数据块的起始地址,数据块左上角的单元格落在这个位置

    const cellAddress = 'A1',
    
    data: DataRow[]

    数据块中的内容,由多个数据行组成