Package com.storedobject.vaadin
Interface SpellCheck
- All Superinterfaces:
com.vaadin.flow.component.HasElement
,com.vaadin.flow.component.HasStyle
,Serializable
- All Known Subinterfaces:
HasTextValue
- All Known Implementing Classes:
ActionTextField
,BasicComboBox
,BlockComboField
,ComboField
,CurrencyField
,GridSearchField
,ItemComboField
,ListField
,LocationField
,MapComboField
,ObjectComboField
,ObjectListField
,SearchField
,TextArea
,TextField
,TreeSearchField
public interface SpellCheck
extends com.vaadin.flow.component.HasStyle
Interface to denote that some text-input based component can switch on/off spell-check feature.
- Author:
- Syam
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
setSpellCheck
(boolean on) Set spelling check on/off.Methods inherited from interface com.vaadin.flow.component.HasElement
getElement
Methods inherited from interface com.vaadin.flow.component.HasStyle
addClassName, addClassNames, getClassName, getClassNames, getStyle, hasClassName, removeClassName, removeClassNames, setClassName, setClassName
-
Method Details
-
setSpellCheck
default void setSpellCheck(boolean on) Set spelling check on/off. (Default is off.)- Parameters:
on
- True to set it on.
-