The IHtmlObject interface defines the structure and behavior of objects that can be embedded within HTML content.

IHtmlObject 接口定义了可以嵌入在 HTML 内容中的对象的结构和行为。

interface IHtmlObject {
    element: HtmlElement;
    height: number;
    loading?: boolean;
    width: number;
    create(owner: Text, element: HtmlElement): void;
    destroy(): void;
    pos(x: number, y: number): void;
    release(): void;
}

实现于

属性

element: HtmlElement

The HTML element associated with this object.

与此对象关联的 HTML 元素。

height: number

The height of the HTML object.

HTML 对象的高度。

loading?: boolean

Indicates whether the HTML object is currently loading.

表示 HTML 对象当前是否正在加载。

width: number

The width of the HTML object.

HTML 对象的宽度。

方法

  • 返回 void

    Destroys the HTML object and frees up all associated resources.

    销毁 HTML 对象并释放所有关联的资源。

  • 参数

    • x: number

      The x-coordinate.

    • y: number

      The y-coordinate.

    返回 void

    Positions the HTML object at the specified coordinates.

    将 HTML 对象定位到指定的坐标。