implicit final class SaferHTMLTableElement extends AnyVal
- See also
https://html.spec.whatwg.org/multipage/tables.html#the-table-element
- Alphabetic
- By Inheritance
- SaferHTMLTableElement
- AnyVal
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new SaferHTMLTableElement(value: HTMLTableElement)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
##(): Int
- Definition Classes
- Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
caption: Option[HTMLTableCaptionElement]
Is an HTMLTableCaptionElement representing the first <caption> that is a child of the element, or null if none is found.
Is an HTMLTableCaptionElement representing the first <caption> that is a child of the element, or null if none is found. When set, if the object doesn't represent a <caption>, a DOMException with the HierarchyRequestError name is thrown. If a correct object is given, it is inserted in the tree as the first child of this element and the first <caption> that is a child of this element is removed from the tree, if any.
MDN
- def caption_=(v: HTMLTableCaptionElement): Unit
-
def
getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
tFoot: Option[HTMLTableSectionElement]
Is an HTMLTableSectionElement representing the first <tfoot> that is a child of the element, or null if none is found.
Is an HTMLTableSectionElement representing the first <tfoot> that is a child of the element, or null if none is found. When set, if the object doesn't represent a <tfoot>, a DOMException with the HierarchyRequestError name is thrown. If a correct object is given, it is inserted in the tree immediately before the first element that is neither a <caption>, a <colgroup>, nor a <thead>, or as the last child if there is no such element, and the first <tfoot> that is a child of this element is removed from the tree, if any.
MDN
- def tFoot_=(v: HTMLTableSectionElement): Unit
-
def
tHead: Option[HTMLTableSectionElement]
Is an HTMLTableSectionElement representing the first <thead> that is a child of the element, or null if none is found.
Is an HTMLTableSectionElement representing the first <thead> that is a child of the element, or null if none is found. When set, if the object doesn't represent a <thead>, a DOMException with the HierarchyRequestError name is thrown. If a correct object is given, it is inserted in the tree immediately before the first element that is neither a <caption>, nor a <colgroup>, or as the last child if there is no such element, and the first <thead> that is a child of this element is removed from the tree, if any.
MDN
- def tHead_=(v: HTMLTableSectionElement): Unit
-
def
toString(): String
- Definition Classes
- Any
- val value: HTMLTableElement