Example usage for Java com.vaadin.ui RichTextArea fields, constructors, methods, implement or subclass
The text is from its open source code.
RichTextArea() Constructs an empty RichTextArea with no caption. | |
RichTextArea(String caption) Constructs an empty RichTextArea with the given caption. | |
RichTextArea(ValueChangeListener Constructs a new RichTextArea with a value change listener. |
String | getValue() |
void | setCaption(String caption) Sets the caption of the component. |
void | setHeight(float height, Unit unit) Sets the height of the object. |
void | setHeight(String height) Sets the height of the component using String presentation. |
void | setSizeFull() Sets the size to 100% x 100%. |
void | setStyleName(String style) Sets one or more user-defined style names of the component, replacing any previous user-defined styles. |
void | setValue(String value) Sets the value of this object. |
void | setWidth(String width) Sets the width of the component using String presentation. |
void | setWidth(float width, Unit unit) Sets the width of the object. |