Interface CellJSON

JSON loosely similar to OOXML Cell.

interface CellJSON {
    c?: string[];
    f?: string;
    l?: string | Partial<{
        address: string;
        history?: string | Partial<boolean>;
        tgtFrame?: string;
        tooltip?: string;
    }>;
    s?: number;
    t?: CellType;
    v?: string | number | boolean;
}

Properties

Properties

c?: string[]

Comments

f?: string

Unparsed formula value

l?: string | Partial<{
    address: string;
    history?: string | Partial<boolean>;
    tgtFrame?: string;
    tooltip?: string;
}>

Hyperlink

s?: number

Style id

If not specified then will be inferred from the value

v?: string | number | boolean