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,
listener: EventListenerOrEventListenerObject,
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,
listener: EventListenerOrEventListenerObject,
options?: boolean | EventListenerOptions,
): void;var HTMLTableCellElement: {
prototype: HTMLTableCellElement;
new (): HTMLTableCellElement;
};§Extends
§Properties
§
axis: string
[src]Sets or retrieves a comma-delimited list of conceptual categories associated with the object.
§
readonly cellIndex: number
[src]Retrieves the position of the object in the cells collection of a row.
§
headers: string
[src]Sets or retrieves a list of header cells that provide information for the object.
§Methods
§
addEventListener<K extends keyof HTMLElementEventMap>(
[src]type: K,
listener: (this: HTMLTableCellElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void§
addEventListener(
[src]type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions,
): void§
removeEventListener<K extends keyof HTMLElementEventMap>(
[src]type: K,
listener: (this: HTMLTableCellElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,
): void§
removeEventListener(
[src]type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | EventListenerOptions,
): void