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

TableRange

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

A table range represents a reference to a subset of a table. It's important to note that the cells specified by a table range do not necessarily form a rectangle. For example, let's say we have a 3 x 3 table where all the cells of the last row are merged together. The table looks like this: [ ] A table range with table cell location = (table_start_location, row = 0, column = 0), row span = 3 and column span = 2 specifies the following cells: x x [ x x x ]

interface TableRange {
columnSpan?: number;
rowSpan?: number;
tableCellLocation?: TableCellLocation;
}

§Properties

§
columnSpan?: number
[src]

The column span of the table range.

§
rowSpan?: number
[src]

The row span of the table range.

§
tableCellLocation?: TableCellLocation
[src]

The cell location where the table range starts.