Log entry that captures change from calling SpreadsheetData.setCellValueAndFormat

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

Hierarchy (View Summary)

Properties

column: number

Column index of cell being modified

format?: string

Format of cell being modified

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 being modified