Interface HTMLTableSectionElement

All Superinterfaces:
Element, EventTarget, HTMLElement, InnerHTML, Node, NonDocumentTypeChildNode, ParentNode
All Known Implementing Classes:
HTMLTableSectionElementImpl

public interface HTMLTableSectionElement extends HTMLElement
Provides special properties and methods (beyond the HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of sections, that is headers, footers and bodies, in an HTML table.
  • Method Details

    • getAlign

      @Deprecated String getAlign()
      Deprecated.
      Sets or retrieves a value that indicates the table alignment.
      Returns:
      a String object.
    • setAlign

      void setAlign(String align)

      setAlign.

      Parameters:
      align - a String object.
    • getCh

      Deprecated.

      getCh.

      Returns:
      a String object.
    • setCh

      void setCh(String ch)

      setCh.

      Parameters:
      ch - a String object.
    • getChOff

      @Deprecated String getChOff()
      Deprecated.

      getChOff.

      Returns:
      a String object.
    • setChOff

      void setChOff(String chOff)

      setChOff.

      Parameters:
      chOff - a String object.
    • getRows

      HTMLCollection getRows()
      Sets or retrieves the number of horizontal rows contained in the object.
      Returns:
      a HTMLCollection object.
    • getvAlign

      @Deprecated String getvAlign()
      Deprecated.

      getvAlign.

      Returns:
      a String object.
    • setvAlign

      void setvAlign(String vAlign)

      setvAlign.

      Parameters:
      vAlign - a String object.
    • deleteRow

      void deleteRow(int index)
      Removes the specified row (tr) from the element and from the rows collection.
      Parameters:
      index - Number that specifies the zero-based position in the rows collection of the row to remove.
    • insertRow

      HTMLTableRowElement insertRow(int index)
      Creates a new row (tr) in the table, and adds the row to the rows collection.
      Parameters:
      index - Number that specifies where to insert the row in the rows collection. The default value is -1, which appends the new row to the end of the rows collection.
      Returns:
      a HTMLTableRowElement object.
    • insertRow

      HTMLTableRowElement insertRow()

      insertRow.

      Returns:
      a HTMLTableRowElement object.