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.
-
getAccessKey()
- A single character access key to give access to the form control.
-
getAlign()
- Text alignment relative to
FIELDSET.
-
getForm()
- Returns the
FORM element containing this control.Returns
null if this control is not within the context of a form.
-
setAccessKey(String)
-
-
setAlign(String)
-
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.
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.
setAccessKey
public abstract void setAccessKey(String accessKey)
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.
setAlign
public abstract void setAlign(String align)
All Packages Class Hierarchy This Package Previous Next Index