Type alias CopyFormatArgs

CopyFormatArgs: {
    column: number;
    metadata: Metadata;
    region: CellRegion;
    row: number;
    value: any;
}

A type alias for the arguments to a copy format function.

Type declaration

  • column: number

    The column index of the value.

  • metadata: Metadata

    The metadata for the cell.

  • region: CellRegion

    The cell region for the value.

  • row: number

    The row index of the value.

  • value: any

    The value for the cell.