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

description

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