API Reference 0.3.24dart_web_toolkit_utilOverflow<String>

Overflow<String> class

Enum for the overflow property.

class Overflow<String> extends Enum<String> {

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

 static const Overflow VISIBLE = const Overflow(Style._OVERFLOW_VISIBLE);
 static const Overflow HIDDEN = const Overflow(Style._OVERFLOW_HIDDEN);
 static const Overflow SCROLL = const Overflow(Style._OVERFLOW_SCROLL);
 static const Overflow AUTO = const Overflow(Style._OVERFLOW_AUTO);
}

Extends

Enum<String> > Overflow<String>

Static Properties

const Overflow AUTO #

static const Overflow AUTO = const Overflow(Style._OVERFLOW_AUTO)

const Overflow HIDDEN #

static const Overflow HIDDEN = const Overflow(Style._OVERFLOW_HIDDEN)

const Overflow SCROLL #

static const Overflow SCROLL = const Overflow(Style._OVERFLOW_SCROLL)

const Overflow VISIBLE #

static const Overflow VISIBLE = const Overflow(Style._OVERFLOW_VISIBLE)

Constructors

const Overflow(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 Overflow(String type) : super (type);

Properties

final T value #

inherited from Enum
T get value => _value;