The IHtmlPageContext interface represents the context in which HTML content is parsed and rendered, providing methods to create and manage HTML objects.

IHtmlPageContext 接口表示解析和渲染 HTML 内容的上下文环境,提供创建和管理 HTML 对象的方法。

interface IHtmlPageContext {
    createObject(owner: Text, element: HtmlElement): IHtmlObject;
    freeObject(obj: IHtmlObject): void;
}

方法

  • 参数

    • owner: Text

      The owner of the HTML object, typically a text container.

    • element: HtmlElement

      The HTML element from which to create the object.

    返回 IHtmlObject

    An instance of IHtmlObject that represents the created HTML object.

    Creates an HTML object based on the provided owner and element, which can be embedded within the HTML content.

    基于提供的拥有者和元素创建一个 HTML 对象,该对象可以嵌入在 HTML 内容中。

  • 参数

    返回 void

    Frees an HTML object, releasing any resources associated with it. This method is typically called when an object is no longer needed.

    释放一个 HTML 对象,释放与其关联的所有资源。通常在不再需要对象时调用此方法。