public class TextAreaElement extends FormElement<HTMLTextAreaElement>
The TextAreaElement represents a wrapper that is associated with the HTMLTextAreaElement
| Constructor and Description |
|---|
TextAreaElement(HTMLTextAreaElement element)
Initializes a new instance of the
TextAreaElement class. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getName()
Represent the name attribute of the input element.
|
java.lang.String |
getType()
The type of this form control.
|
java.lang.String |
getValue()
Represents the string value of the input element that is directly mapped to the 'value' attribute.
|
void |
setName(java.lang.String value)
Represent the name attribute of the input element.
|
void |
setValue(java.lang.String value)
Represents the string value of the input element that is directly mapped to the 'value' attribute.
|
getHtmlElementgetElementType, getId, setIdpublic TextAreaElement(HTMLTextAreaElement element)
Initializes a new instance of the TextAreaElement class.
element - The element.public java.lang.String getName()
Represent the name attribute of the input element.
Value: The name of the element.getName in class FormElementBasepublic void setName(java.lang.String value)
Represent the name attribute of the input element.
Value: The name of the element.setName in class FormElementBasepublic java.lang.String getValue()
Represents the string value of the input element that is directly mapped to the 'value' attribute.
getValue in class FormElementBasepublic void setValue(java.lang.String value)
Represents the string value of the input element that is directly mapped to the 'value' attribute.
setValue in class FormElementBasepublic java.lang.String getType()
The type of this form control.