All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.w3c.dom.html.HTMLTableSectionElement Maven / Gradle / Ivy

The newest version!
// Copyright (c) 1998 by W3C
//
// DOM is a trademark of W3C
// The DOM level 1 specification, from which this
// source is derived, is copyright by W3C.
// See: http://www.w3.org/TR/REC-DOM-Level-1/
//

package org.w3c.dom.html;

import org.w3c.dom.*;

/**

  

The THEAD, TFOOT, and TBODY elements.


Property Summary
 align getAlign setAlign

Horizontal alignment of data in cells. See the align attribute for HTMLTheadElement for details.

 ch getCh setCh

Alignment character for cells in a column. See the char attribute definition in HTML 4.0.

 chOff getChOff setChOff

Offset of alignment character. See the charoff attribute definition in HTML 4.0.

 vAlign getVAlign setVAlign

Vertical alignment of data in cells. See the valign attribute for HTMLTheadElement for details.

 rows getRows

The collection of rows in this table section.

  */ public interface HTMLTableSectionElement extends HTMLElement { /** Assigns the value of the align property. */ void setAlign (String align); /** * Returns the value of the align property. */ String getAlign (); /** Assigns the value of the ch property. */ void setCh (String ch); /** * Returns the value of the ch property. */ String getCh (); /** Assigns the value of the chOff property. */ void setChOff (String chOff); /** * Returns the value of the chOff property. */ String getChOff (); /** Assigns the value of the vAlign property. */ void setVAlign (String vAlign); /** * Returns the value of the vAlign property. */ String getVAlign (); /** * Returns the value of the rows property. */ HTMLCollection getRows (); /**

Insert a row into this section.

@return The newly created row. @param index The row number where to insert a new row. */ HTMLElement insertRow (int index); /**

Delete a row from this section.

@param index The index of the row to be deleted. */ void deleteRow (int index); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy