The Candid Startup
    Preparing search index...

    Log entry that captures change from calling SpreadsheetData.setCellValueAndFormat

    interface SetCellValueAndFormatLogEntry {
        column: number;
        format?: CellFormat;
        history?: string;
        pending?: string;
        row: number;
        snapshot?: string;
        type: "SetCellValueAndFormat";
        value: CellValue;
    }

    Hierarchy (View Summary)

    Index

    Properties

    column: number

    Column index of cell being modified

    format?: CellFormat

    Format of cell

    history?: string

    Stores a reference to an external history of the event log up to and including the previous entry

    pending?: string

    Indicates that a background workflow is pending

    row: number

    Row index of cell being modified

    snapshot?: string

    Stores a reference to a snapshot of the complete log up to and including this entry

    type: "SetCellValueAndFormat"

    Used as a discriminated union tag by implementations

    value: CellValue

    Value of cell