The HtmlElement class represents HTML element.

HtmlElement 类表示 HTML 元素。

构造函数

属性

_attrs: Record<string, any>
name: string

The name of the HTML element.

HTML 元素的名称。

The object associated with the HTML element.

与 HTML 元素关联的对象。

space: number

The space associated with the element, used for layout purposes.

与元素关联的空间,用于布局目的。

style: TextStyle

The style of the HTML element.

HTML 元素的样式。

text: string

The text content of the HTML element.

HTML 元素的文本内容。

The type of the HTML element.

HTML 元素的类型。

pool: HtmlElement[] = []

A static pool of HtmlElement objects for reuse.

HtmlElement 对象的静态池。

方法

  • 返回 void

    Fetches attributes from an external source and assigns them to the element.

    从外部源获取属性,并将它们分配给元素。

  • 参数

    • attrName: string

      The name of the attribute to retrieve.

    返回 any

    The value of the attribute.

    Gets the value of an attribute from the element.

    从元素中获取属性的值。

  • 参数

    • attrName: string

      The name of the attribute.

    • 可选defValue: boolean

      The default value to use if the attribute is not found or is not a boolean.

    返回 boolean

    The boolean value of the attribute or the default value.

    Gets a boolean attribute value, with an optional default.

    获取布尔属性值,可设置默认值。

  • 参数

    • attrName: string

      The name of the attribute.

    • 可选defValue: number

      The default value to use if the attribute is not found or is not a float.

    返回 number

    The float value of the attribute or the default value.

    Gets a float attribute value, with an optional default.

    获取浮点属性值,可设置默认值。

  • 参数

    • attrName: string

      The name of the attribute.

    • 可选defValue: number

      The default value to use if the attribute is not found or is not an integer.

    返回 number

    The integer value of the attribute or the default value.

    Gets an integer attribute value, with an optional default.

    获取整数属性值,可设置默认值。

  • 参数

    • attrName: string

      The name of the attribute.

    • 可选defValue: string

      The default value to use if the attribute is not found or is not a string.

    返回 string

    The string value of the attribute or the default value.

    Gets a string attribute value, with an optional default.

    获取字符串属性值,可设置默认值。

  • 返回 void

    Resets the properties of the element to their default state, preparing it for reuse from the pool.

    将元素的属性重置为默认状态,准备从池中重用。

  • 参数

    • attrName: string

      The name of the attribute to set.

    • attrValue: any

      The value to set for the attribute.

    返回 void

    Sets an attribute on the element with the given value.

    使用给定的值在元素上设置属性。