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

TableCellLocation

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

Location of a single cell within a table.

interface TableCellLocation {
columnIndex?: number;
rowIndex?: number;
tableStartLocation?: Location;
}

§Properties

§
columnIndex?: number
[src]

The zero-based column index. For example, the second column in the table has a column index of 1.

§
rowIndex?: number
[src]

The zero-based row index. For example, the second row in the table has a row index of 1.

§
tableStartLocation?: Location
[src]

The location where the table starts in the document.