userSelect property - CssStyleDeclarationBase class - dart:html library (original) (raw)

description

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, '');
}