selectOnFocus property
bool
get
selectOnFocus
Implementation
bool get selectOnFocus => _selectOnFocus?.get() ?? true;
set
selectOnFocus
(dynamic v)
Implementation
set selectOnFocus(dynamic v) {
if (_selectOnFocus != null) {
_selectOnFocus!.set(v);
} else if (v != null) {
_selectOnFocus = BooleanObservable(Binding.toKey(id, 'selectonfocus'), v,
scope: scope, listener: onPropertyChange);
}
}