All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.w3c.dom.html.HTMLBaseFontElement

public interface HTMLBaseFontElement
extends HTMLElement
Base font. See the BASEFONT element definition in HTML 4.0. This element is deprecated in HTML 4.0.


Method Index

 o getColor()
Font color.
 o getFace()
Font face identifier.
 o getSize()
Font size.
 o setColor(String)
 o setFace(String)
 o setSize(String)

Methods

 o getColor
 public abstract String getColor()
Font color. See the color attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setColor
 public abstract void setColor(String color)
 o getFace
 public abstract String getFace()
Font face identifier. See the face attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setFace
 public abstract void setFace(String face)
 o getSize
 public abstract String getSize()
Font size. See the size attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setSize
 public abstract void setSize(String size)

All Packages  Class Hierarchy  This Package  Previous  Next  Index