Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
interface HTMLFrameSetElement
Deprecated
import { type HTMLFrameSetElement } from "https://deno.land/x/yxz@0.17.0/typing/lib.dom.ts";

Provides special properties (beyond those of the regular HTMLElement interface they also inherit) for manipulating elements.

Properties

deprecated
cols: string

Sets or retrieves the frame widths of the object.

deprecated
rows: string

Sets or retrieves the frame heights of the object.

Methods

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