Java com.google.gwt.dom.client TextAreaElement fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.dom.client TextAreaElement fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.dom.client TextAreaElement.

The text is from its open source code.

Method

TextAreaElementas(Element elem)
Assert that the given Element is compatible with this class and automatically typecast it.
StringgetAccessKey()
A single character access key to give access to the form control.
intgetClientHeight()
intgetCols()
Width of control (in characters).
StringgetDefaultValue()
Represents the contents of the element.
StringgetName()
Form control or object name when submitted with a form.
intgetRows()
Number of text rows.
intgetScrollHeight()
StringgetValue()
Represents the current contents of the corresponding form control, in an interactive user agent.
booleanisDisabled()
The control is unavailable in this context.
booleanisReadOnly()
This control is read-only.
voidsetAccessKey(String accessKey)
A single character access key to give access to the form control.
voidsetCols(int cols)
Width of control (in characters).
voidsetDefaultValue(String defaultValue)
Represents the contents of the element.
voidsetDisabled(boolean disabled)
The control is unavailable in this context.
voidsetName(String name)
Form control or object name when submitted with a form.
voidsetReadOnly(boolean readOnly)
This control is read-only.
voidsetRows(int rows)
Number of text rows.
voidsetScrollTop(int scrollTop)
voidsetValue(String value)
Represents the current contents of the corresponding form control, in an interactive user agent.