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

HTMLTableCellElement

Provides special properties and methods (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of table cells, either header or data cells, in an HTML document.

interface HTMLTableCellElement extends HTMLElement {
abbr: string;
align: string;
axis: string;
bgColor: string;
readonly cellIndex: number;
ch: string;
chOff: string;
colSpan: number;
headers: string;
height: string;
noWrap: boolean;
rowSpan: number;
scope: string;
vAlign: string;
width: string;
addEventListener<K extends keyof HTMLElementEventMap>(
type: K,
listener: (this: HTMLTableCellElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void;
addEventListener(
type: string,
options?: boolean | AddEventListenerOptions,
): void;
removeEventListener<K extends keyof HTMLElementEventMap>(
type: K,
listener: (this: HTMLTableCellElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,
): void;
removeEventListener(
type: string,
options?: boolean | EventListenerOptions,
): void;
}
var HTMLTableCellElement: {};

§Extends

§Properties

§
abbr: string
[src]

Sets or retrieves abbreviated text for the object.

§
align: string
[src]

Sets or retrieves how the object is aligned with adjacent text.

§
axis: string
[src]

Sets or retrieves a comma-delimited list of conceptual categories associated with the object.

§
bgColor: string
[src]
§
readonly cellIndex: number
[src]

Retrieves the position of the object in the cells collection of a row.

§
ch: string
[src]
§
chOff: string
[src]
§
colSpan: number
[src]

Sets or retrieves the number columns in the table that the object should span.

§
headers: string
[src]

Sets or retrieves a list of header cells that provide information for the object.

§
height: string
[src]

Sets or retrieves the height of the object.

§
noWrap: boolean
[src]

Sets or retrieves whether the browser automatically performs wordwrap.

§
rowSpan: number
[src]

Sets or retrieves how many rows in a table the cell should span.

§
scope: string
[src]

Sets or retrieves the group of cells in a table to which the object's information applies.

§
vAlign: string
[src]
§
width: string
[src]

Sets or retrieves the width of the object.

§Methods

§
addEventListener<K extends keyof HTMLElementEventMap>(
type: K,
listener: (this: HTMLTableCellElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void
[src]
§
addEventListener(
type: string,
options?: boolean | AddEventListenerOptions,
): void
[src]
§
removeEventListener<K extends keyof HTMLElementEventMap>(
type: K,
listener: (this: HTMLTableCellElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,
): void
[src]
§
removeEventListener(
type: string,
options?: boolean | EventListenerOptions,
): void
[src]