Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UpdateTableRowStyleRequest

import type { UpdateTableRowStyleRequest } from "https://googleapis.deno.dev/v1/docs:v1.ts";

Updates the TableRowStyle of rows in a table.

interface UpdateTableRowStyleRequest {
fields?: string;
rowIndices?: number[];
tableRowStyle?: TableRowStyle;
tableStartLocation?: Location;
}

§Properties

§
fields?: string
[src]

The fields that should be updated. At least one field must be specified. The root tableRowStyle is implied and should not be specified. A single "*" can be used as short-hand for listing every field. For example to update the minimum row height, set fields to "min_row_height".

§
rowIndices?: number[]
[src]

The list of zero-based row indices whose style should be updated. If no indices are specified, all rows will be updated.

§
tableRowStyle?: TableRowStyle
[src]

The styles to be set on the rows.

§
tableStartLocation?: Location
[src]

The location where the table starts in the document.