interface dom.HTMLTableColElement
implements HTMLElement
import { type dom } from "https://deno.land/x/evt@v2.4.19/lib/types/index.ts";
const { HTMLTableColElement } = dom;
Provides special properties (beyond the HTMLElement interface it also has available to it inheritance) for manipulating single or grouped table column elements.
Methods
addEventListener<K extends keyof HTMLElementEventMap>(): void
type: K,
listener: (this: HTMLTableColElement, 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: HTMLTableColElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,