@jsfkit/types
    Preparing search index...

    Type Alias Cell

    A spreadsheet cell.

    type Cell = {
        c?: Comment[];
        f?: string | integer;
        F?: string;
        l?: string;
        s?: integer;
        t?: CellValueType;
        v?: string | null | number | boolean;
    }
    Index

    Properties

    Properties

    c?: Comment[]

    Comments associated with the cell.

    f?: string | integer

    Cell formula expression. When the value is a string it will be a formula with A1-style references. When the value is a number is an index to a formula in the workbook's formulas array.

    F?: string

    The range of enclosing array if the formula is an array formula.

    l?: string

    Cell hyperlink. Must be a URL.

    s?: integer

    An index to a style in the workbook's styles.

    0
    

    The type of the value contained in the cell. Cells with errors or dates must include this property, but it's otherwise optional (the type can be inferred from the Cell.v property).

    v?: string | null | number | boolean

    The value of the cell. The result of a calculation if the cell has a formula, otherwise safe to assume that it's user-entered.

    null