textOverflow property - CssStyleDeclarationBase class - dart:html library (original) (raw)
String gettextOverflow
Gets the value of "text-overflow"
Implementation
String get textOverflow => getPropertyValue('text-overflow');
settextOverflow (String value)
Sets the value of "text-overflow"
Implementation
set textOverflow(String value) {
setProperty('text-overflow', value, '');
}