com.aspose.html

Class HTMLTableElement

    • Constructor Detail

      • HTMLTableElement

        public HTMLTableElement(com.aspose.html.dom.DOMName name,
                                Document doc)

        Initializes a new instance of the HTMLTableElement class.

        Parameters:
        name - The DOM name.
        doc - The document.
    • Method Detail

      • getRows

        @DOMNameAttribute(name="rows")
        public HTMLCollection getRows()

        Returns the table's TFOOT, or null if none exists.

        Returns a collection of all the rows in the table, including all in THEAD, TFOOT, all TBODY elements.

        Throws:
        DOMException - HIERARCHY_REQUEST_ERR: if the element is not a TFOOT.
      • getAlign

        @DOMNameAttribute(name="align")
        public String getAlign()

        Specifies the table's position with respect to the rest of the document. See the align attribute definition in HTML 4.01. This attribute is deprecated in HTML 4.01.

      • setAlign

        @DOMNameAttribute(name="align")
        public void setAlign(String value)

        Specifies the table's position with respect to the rest of the document. See the align attribute definition in HTML 4.01. This attribute is deprecated in HTML 4.01.

      • getBgColor

        @DOMNameAttribute(name="bgColor")
        public String getBgColor()

        Cell background color. See the bgcolor attribute definition in HTML 4.01. This attribute is deprecated in HTML 4.01.

      • setBgColor

        @DOMNameAttribute(name="bgColor")
        public void setBgColor(String value)

        Cell background color. See the bgcolor attribute definition in HTML 4.01. This attribute is deprecated in HTML 4.01.

      • getBorder

        @DOMNameAttribute(name="border")
        public String getBorder()

        The width of the border around the table. See the border attribute definition in HTML 4.01.

      • setBorder

        @DOMNameAttribute(name="border")
        public void setBorder(String value)

        The width of the border around the table. See the border attribute definition in HTML 4.01.

      • getCellPadding

        @DOMNameAttribute(name="cellPadding")
        public String getCellPadding()

        Specifies the horizontal and vertical space between cell content and cell borders. See the cellpadding attribute definition in HTML 4.01.

      • setCellPadding

        @DOMNameAttribute(name="cellPadding")
        public void setCellPadding(String value)

        Specifies the horizontal and vertical space between cell content and cell borders. See the cellpadding attribute definition in HTML 4.01.

      • getCellSpacing

        @DOMNameAttribute(name="cellSpacing")
        public String getCellSpacing()

        Specifies the horizontal and vertical separation between cells. See the cellspacing attribute definition in HTML 4.01.

      • setCellSpacing

        @DOMNameAttribute(name="cellSpacing")
        public void setCellSpacing(String value)

        Specifies the horizontal and vertical separation between cells. See the cellspacing attribute definition in HTML 4.01.

      • getFrame

        @DOMNameAttribute(name="frame")
        public String getFrame()

        Specifies which external table borders to render. See the frame attribute definition in HTML 4.01.

      • setFrame

        @DOMNameAttribute(name="frame")
        public void setFrame(String value)

        Specifies which external table borders to render. See the frame attribute definition in HTML 4.01.

      • getRules

        @DOMNameAttribute(name="rules")
        public String getRules()

        Specifies which internal table borders to render. See the rules attribute definition in HTML 4.01.

      • setRules

        @DOMNameAttribute(name="rules")
        public void setRules(String value)

        Specifies which internal table borders to render. See the rules attribute definition in HTML 4.01.

      • getSummary

        @DOMNameAttribute(name="summary")
        public String getSummary()

        Description about the purpose or structure of a table. See the summary attribute definition in HTML 4.01.

      • setSummary

        @DOMNameAttribute(name="summary")
        public void setSummary(String value)

        Description about the purpose or structure of a table. See the summary attribute definition in HTML 4.01.

      • getWidth

        @DOMNameAttribute(name="width")
        public String getWidth()

        Specifies the desired table width. See the width attribute definition in HTML 4.01.

      • setWidth

        @DOMNameAttribute(name="width")
        public void setWidth(String value)

        Specifies the desired table width. See the width attribute definition in HTML 4.01.

      • createTHead

        @DOMNameAttribute(name="createTHead")
        public Element createTHead()

        Create a table header row or return an existing one.

        Returns:
        A new table header element (THEAD).
      • deleteTHead

        @DOMNameAttribute(name="deleteTHead")
        public void deleteTHead()

        Delete the header from the table, if one exists.

      • createTFoot

        @DOMNameAttribute(name="createTFoot")
        public Element createTFoot()

        Create a table footer row or return an existing one.

        Returns:
        A footer element (TFOOT).
      • deleteTFoot

        @DOMNameAttribute(name="deleteTFoot")
        public void deleteTFoot()

        Delete the footer from the table, if one exists.

      • createCaption

        @DOMNameAttribute(name="createCaption")
        public Element createCaption()

        Create a new table caption object or return an existing one.

        Returns:
        A CAPTION element.
      • deleteCaption

        @DOMNameAttribute(name="deleteCaption")
        public void deleteCaption()

        Delete the table caption, if one exists.

      • deleteRow

        @DOMNameAttribute(name="deleteRow")
        public void deleteRow(int index)

        Delete a table row.

        Parameters:
        index - The index of the row to be deleted. This index starts from 0 and is relative to the logical order (not document order) of all the rows contained inside the table. If the index is -1 the last row in the table is deleted.
        Throws:
        DOMException - INDEX_SIZE_ERR: Raised if the specified index is greater than or equal to the number of rows or if the index is a negative number other than -1.