TableCell
Unofficial
Represents a single cell in a markdown table.
Import:
import type { TableCell } from '@obsidian-typings/obsidian-catalyst-latest';Signature:
export interface TableCellProperties
| Property | Type | Description | |
|---|---|---|---|
| col | number | Column index of the cell. | |
| contentEl | HTMLElement | Element containing the cell's content. | |
| dirty | boolean | Whether the cell has been modified since the last save. | |
| el | HTMLElement | DOM element for the cell. | |
| end | number | End offset of the cell content in the document. | |
| padEnd | number | Trailing padding characters in the cell. | |
| padStart | number | Leading padding characters in the cell. | |
| row | number | Row index of the cell. | |
| start | number | Start offset of the cell content in the document. | |
| table | TableCellEditor | Table cell editor that manages this cell. | |
| text | string | Text content of the cell. |
Links to this page: