org.w3c.dom.html.HTMLTableColElement 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.*;
/**
Regroups the
COL
and
COLGROUP
elements. See the
COL element definition
in HTML 4.0.
Property Summary
align
getAlign
setAlign
Horizontal alignment of cell data in column. See the
align attribute definition
in HTML 4.0.
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.
span
getSpan
setSpan
Indicates the number of columns in a group or affected by a grouping. See the
span attribute definition
in HTML 4.0.
vAlign
getVAlign
setVAlign
Vertical alignment of cell data in column. See the
valign attribute definition
in HTML 4.0.
width
getWidth
setWidth
Default column width. See the
width attribute definition
in HTML 4.0.
*/
public interface HTMLTableColElement
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 span
property.
*/
void setSpan (int span);
/**
* Returns the value of the span
property.
*/
int getSpan ();
/** Assigns the value of the vAlign
property.
*/
void setVAlign (String vAlign);
/**
* Returns the value of the vAlign
property.
*/
String getVAlign ();
/** Assigns the value of the width
property.
*/
void setWidth (String width);
/**
* Returns the value of the width
property.
*/
String getWidth ();
}