All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.w3c.dom.html.HTMLLegendElement

public interface HTMLLegendElement
extends HTMLElement
Provides a caption for a FIELDSET grouping. See the LEGEND element definition in HTML 4.0.


Method Index

 o getAccessKey()
A single character access key to give access to the form control.
 o getAlign()
Text alignment relative to FIELDSET.
 o getForm()
Returns the FORM element containing this control.
 o setAccessKey(String)
 o setAlign(String)

Methods

 o getForm
 public abstract HTMLFormElement getForm()
Returns the FORM element containing this control. Returns null if this control is not within the context of a form.

 o getAccessKey
 public abstract String getAccessKey()
A single character access key to give access to the form control. See the accesskey attribute definition in HTML 4.0.

 o setAccessKey
 public abstract void setAccessKey(String accessKey)
 o getAlign
 public abstract String getAlign()
Text alignment relative to FIELDSET. 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)

All Packages  Class Hierarchy  This Package  Previous  Next  Index