|
|
Multi-line text field. See the <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-TEXTAREA"> TEXTAREA element definition </a> in HTML 4.0.
HTMLTextAreaElement ()
| HTMLTextAreaElement |
HTMLTextAreaElement (const HTMLTextAreaElement &other)
| HTMLTextAreaElement |
HTMLTextAreaElement (const Node &other)
| HTMLTextAreaElement |
HTMLTextAreaElement (HTMLTextAreaElementImpl *impl)
| HTMLTextAreaElement |
[protected]
HTMLTextAreaElement & operator = (const HTMLTextAreaElement &other)
| operator = |
Reimplemented from HTMLElement.
HTMLTextAreaElement & operator = (const Node &other)
| operator = |
Reimplemented from HTMLElement.
~HTMLTextAreaElement ()
| ~HTMLTextAreaElement |
DOMString defaultValue ()
| defaultValue |
[const]
Stores the initial control value (i.e., the initial value of <code> value </code> ).
void setDefaultValue ( const DOMString & )
| setDefaultValue |
see defaultValue
HTMLFormElement form ()
| form |
[const]
Returns the <code> FORM </code> element containing this control. Returns null if this control is not within the context of a form.
DOMString accessKey ()
| accessKey |
[const]
A single character access key to give access to the form control. See the <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-accesskey"> accesskey attribute definition </a> in HTML 4.0.
void setAccessKey ( const DOMString & )
| setAccessKey |
see accessKey
long cols ()
| cols |
[const]
Width of control (in characters). See the <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-cols-TEXTAREA"> cols attribute definition </a> in HTML 4.0.
void setCols ( long )
| setCols |
see cols
bool disabled ()
| disabled |
[const]
The control is unavailable in this context. See the <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-disabled"> disabled attribute definition </a> in HTML 4.0.
void setDisabled ( bool )
| setDisabled |
see disabled
DOMString name ()
| name |
[const]
Form control or object name when submitted with a form. See the <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-name-TEXTAREA"> name attribute definition </a> in HTML 4.0.
void setName ( const DOMString & )
| setName |
see name
bool readOnly ()
| readOnly |
[const]
This control is read-only. See the <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-readonly"> readonly attribute definition </a> in HTML 4.0.
void setReadOnly ( bool )
| setReadOnly |
see readOnly
long rows ()
| rows |
[const]
Number of text rows. See the <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-rows-TEXTAREA"> rows attribute definition </a> in HTML 4.0.
void setRows ( long )
| setRows |
see rows
long tabIndex ()
| tabIndex |
[const]
Index that represents the element's position in the tabbing order. See the <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-tabindex"> tabindex attribute definition </a> in HTML 4.0.
void setTabIndex ( long )
| setTabIndex |
see tabIndex
DOMString type ()
| type |
[const]
The type of this form control.
DOMString value ()
| value |
[const]
The current textual content of the multi-line text field. If the entirety of the data can not fit into a single wstring, the implementation may truncate the data.
void setValue ( const DOMString & )
| setValue |
see value
void blur ( )
| blur |
Removes keyboard focus from this element.
void focus ( )
| focus |
Gives keyboard focus to this element.
void select ( )
| select |
Select the contents of the <code> TEXTAREA </code> .
Generated by: root@daffy.perf.redhat.com on Mon Jul 14 13:28:10 2003, using kdoc 2.0a53. |