All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.w3c.dom.html.HTMLHRElement

public interface HTMLHRElement
extends HTMLElement
Create a horizontal rule. See the HR element definition in HTML 4.0.


Method Index

 o getAlign()
Align the rule on the page.
 o getNoShade()
Indicates to the user agent that there should be no shading in the rendering of this element.
 o getSize()
The height of the rule.
 o getWidth()
The width of the rule.
 o setAlign(String)
 o setNoShade(boolean)
 o setSize(String)
 o setWidth(String)

Methods

 o getAlign
 public abstract String getAlign()
Align the rule on the page. See the align attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setAlign
 public abstract void setAlign(String align)
 o getNoShade
 public abstract boolean getNoShade()
Indicates to the user agent that there should be no shading in the rendering of this element. See the noshade attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setNoShade
 public abstract void setNoShade(boolean noShade)
 o getSize
 public abstract String getSize()
The height of the rule. 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)
 o getWidth
 public abstract String getWidth()
The width of the rule. See the width attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setWidth
 public abstract void setWidth(String width)

All Packages  Class Hierarchy  This Package  Previous  Next  Index