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

org.w3c.dom.html.HTMLHRElement 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.*;

/**

  

Create a horizontal rule. See the HR element definition in HTML 4.0.


Property Summary
 align getAlign setAlign

Align the rule on the page. See the align attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 noShade getNoShade setNoShade

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.

 size getSize setSize

The height of the rule. See the size attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 width getWidth setWidth

The width of the rule. See the width attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

  */ public interface HTMLHRElement 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 noShade property. */ void setNoShade (boolean noShade); /** * Returns the value of the noShade property. */ boolean getNoShade (); /** Assigns the value of the size property. */ void setSize (String size); /** * Returns the value of the size property. */ String getSize (); /** Assigns the value of the width property. */ void setWidth (String width); /** * Returns the value of the width property. */ String getWidth (); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy