API Reference 0.3.24dart_web_toolkit_utilTextOverflow<String>

TextOverflow<String> class

Enum for the 'text-overflow' CSS3 property.

class TextOverflow<String> extends Enum<String> {

 const TextOverflow(String type) : super (type);

 static const TextOverflow CLIP = const TextOverflow(Style._TEXT_OVERFLOW_CLIP);
 static const TextOverflow ELLIPSIS = const TextOverflow(Style._TEXT_OVERFLOW_ELLIPSIS);
}

Extends

Enum<String> > TextOverflow<String>

Static Properties

const TextOverflow CLIP #

static const TextOverflow CLIP = const TextOverflow(Style._TEXT_OVERFLOW_CLIP)

const TextOverflow ELLIPSIS #

static const TextOverflow ELLIPSIS = const TextOverflow(Style._TEXT_OVERFLOW_ELLIPSIS)

Constructors

const TextOverflow(String type) #

Creates a new Object instance.

Object instances have no meaningful state, and are only useful through their identity. An Object instance is equal to itself only.

docs inherited from Object
const TextOverflow(String type) : super (type);

Properties

final T value #

inherited from Enum
T get value => _value;