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.
-
blur()
-
Removes keyboard focus from this element.
-
focus()
-
Gives keyboard focus to this element.
-
getAccessKey()
- A single character access key to give access to the form control.
-
getCols()
- Width of control (in characters).
-
getDefaultValue()
- Stores the initial control value (i.e., the initial value of
value).
-
getDisabled()
- The control is unavailable in this context.
-
getForm()
- Returns the FORM element containing this control.
-
getName()
- Form control or object name when submitted with a form.
-
getReadOnly()
- This control is read-only.
-
getRows()
- Number of text rows.
-
getTabIndex()
- Index that represents the element's position in the tabbing order.
-
getType()
- The type of this form control.
-
select()
-
Select the contents of the TEXTAREA.
-
setAccessKey(String)
-
-
setCols(int)
-
-
setDefaultValue(String)
-
-
setDisabled(boolean)
-
-
setName(String)
-
-
setReadOnly(boolean)
-
-
setRows(int)
-
-
setTabIndex(int)
-
getDefaultValue
public abstract String getDefaultValue()
- Stores the initial control value (i.e., the initial value of
value).
setDefaultValue
public abstract void setDefaultValue(String defaultValue)
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)
getCols
public abstract int getCols()
- Width of control (in characters). See the cols attribute definition in HTML 4.0.
setCols
public abstract void setCols(int cols)
getDisabled
public abstract boolean getDisabled()
- The control is unavailable in this context. See the disabled attribute definition in HTML 4.0.
setDisabled
public abstract void setDisabled(boolean disabled)
getName
public abstract String getName()
- Form control or object name when submitted with a form. See the name attribute definition in HTML 4.0.
setName
public abstract void setName(String name)
getReadOnly
public abstract boolean getReadOnly()
- This control is read-only. See the readonly attribute definition in HTML 4.0.
setReadOnly
public abstract void setReadOnly(boolean readOnly)
getRows
public abstract int getRows()
- Number of text rows. See the rows attribute definition in HTML 4.0.
setRows
public abstract void setRows(int rows)
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.
setTabIndex
public abstract void setTabIndex(int tabIndex)
getType
public abstract String getType()
- The type of this form control.
blur
public abstract void blur()
- Removes keyboard focus from this element.
focus
public abstract void focus()
- Gives keyboard focus to this element.
select
public abstract void select()
- Select the contents of the TEXTAREA.
All Packages Class Hierarchy This Package Previous Next Index