interface dom.HTMLTableRowElement
implements HTMLElement
import { type dom } from "https://deno.land/x/evt@v2.4.18/lib/index.ts";
const { HTMLTableRowElement } = dom;
Provides special properties and methods (beyond the HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of rows in an HTML table.
Properties
readonly
cells: HTMLCollectionOf<HTMLTableDataCellElement | HTMLTableHeaderCellElement>Retrieves a collection of all cells in the table row.
Methods
Removes the specified cell from the table row, as well as from the cells collection.
insertCell(index?: number): HTMLTableDataCellElement
Creates a new cell in the table row, and adds the cell to the cells collection.
addEventListener<K extends keyof HTMLElementEventMap>(): void
type: K,
listener: (this: HTMLTableRowElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
addEventListener(): void
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions,
removeEventListener<K extends keyof HTMLElementEventMap>(): void
type: K,
listener: (this: HTMLTableRowElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,