Skip to main content
interface DocumentTableCell
import { type DocumentTableCell } from "https://deno.land/x/aiformrecognizer@v1.1.0/src/mod.ts";

An object representing the location and content of a table cell.

Properties

optional
kind: DocumentTableCellKind

Table cell kind.

rowIndex: number

Row index of the cell.

columnIndex: number

Column index of the cell.

optional
rowSpan: number

Number of rows spanned by this cell.

optional
columnSpan: number

Number of columns spanned by this cell.

content: string

Concatenated content of the table cell in reading order.

optional
boundingRegions: BoundingRegion[]

Bounding regions covering the table cell.

spans: DocumentSpan[]

Location of the table cell in the reading order concatenated content.