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.
|
getHtmlElement
getElementType, getId, setId
public 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 FormElementBase
public void setName(java.lang.String value)
Represent the name attribute of the input element.
Value: The name of the element.setName
in class FormElementBase
public java.lang.String getValue()
Represents the string value of the input element that is directly mapped to the 'value' attribute.
getValue
in class FormElementBase
public 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 FormElementBase
public java.lang.String getType()
The type of this form control.