userSelect property - CssStyleDeclarationBase class - dart:html library (original) (raw)
String getuserSelect
Gets the value of "user-select"
Implementation
String get userSelect => getPropertyValue('user-select');
setuserSelect (String value)
Sets the value of "user-select"
Implementation
set userSelect(String value) {
setProperty('user-select', value, '');
}