All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.w3c.dom.html.HTMLTextAreaElement

public interface HTMLTextAreaElement
extends HTMLElement
Multi-line text field. See the TEXTAREA element definition in HTML 4.0.


Method Index

 o blur()
Removes keyboard focus from this element.
 o focus()
Gives keyboard focus to this element.
 o getAccessKey()
A single character access key to give access to the form control.
 o getCols()
Width of control (in characters).
 o getDefaultValue()
Stores the initial control value (i.e., the initial value of value).
 o getDisabled()
The control is unavailable in this context.
 o getForm()
Returns the FORM element containing this control.
 o getName()
Form control or object name when submitted with a form.
 o getReadOnly()
This control is read-only.
 o getRows()
Number of text rows.
 o getTabIndex()
Index that represents the element's position in the tabbing order.
 o getType()
The type of this form control.
 o select()
Select the contents of the TEXTAREA.
 o setAccessKey(String)
 o setCols(int)
 o setDefaultValue(String)
 o setDisabled(boolean)
 o setName(String)
 o setReadOnly(boolean)
 o setRows(int)
 o setTabIndex(int)

Methods

 o getDefaultValue
 public abstract String getDefaultValue()
Stores the initial control value (i.e., the initial value of value).

 o setDefaultValue
 public abstract void setDefaultValue(String defaultValue)
 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 getCols
 public abstract int getCols()
Width of control (in characters). See the cols attribute definition in HTML 4.0.

 o setCols
 public abstract void setCols(int cols)
 o getDisabled
 public abstract boolean getDisabled()
The control is unavailable in this context. See the disabled attribute definition in HTML 4.0.

 o setDisabled
 public abstract void setDisabled(boolean disabled)
 o getName
 public abstract String getName()
Form control or object name when submitted with a form. See the name attribute definition in HTML 4.0.

 o setName
 public abstract void setName(String name)
 o getReadOnly
 public abstract boolean getReadOnly()
This control is read-only. See the readonly attribute definition in HTML 4.0.

 o setReadOnly
 public abstract void setReadOnly(boolean readOnly)
 o getRows
 public abstract int getRows()
Number of text rows. See the rows attribute definition in HTML 4.0.

 o setRows
 public abstract void setRows(int rows)
 o getTabIndex
 public abstract int getTabIndex()
Index that represents the element's position in the tabbing order. See the tabindex attribute definition in HTML 4.0.

 o setTabIndex
 public abstract void setTabIndex(int tabIndex)
 o getType
 public abstract String getType()
The type of this form control.

 o blur
 public abstract void blur()
Removes keyboard focus from this element.

 o focus
 public abstract void focus()
Gives keyboard focus to this element.

 o select
 public abstract void select()
Select the contents of the TEXTAREA.


All Packages  Class Hierarchy  This Package  Previous  Next  Index