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.
-
getColor()
- Font color.
-
getFace()
- Font face identifier.
-
getSize()
- Font size.
-
setColor(String)
-
-
setFace(String)
-
-
setSize(String)
-
getColor
public abstract String getColor()
- Font color. See the color attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.
setColor
public abstract void setColor(String color)
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.
setFace
public abstract void setFace(String face)
getSize
public abstract String getSize()
- Font size. See the size attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.
setSize
public abstract void setSize(String size)
All Packages Class Hierarchy This Package Previous Next Index