API Reference 0.3.24dart_web_toolkit_utilVerticalAlign<String>

VerticalAlign<String> class

Enum for the vertical-align property.

class VerticalAlign<String> extends Enum<String> {

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

 static const VerticalAlign BASELINE = const VerticalAlign(Style._VERTICAL_ALIGN_BASELINE);
 static const VerticalAlign SUB = const VerticalAlign(Style._VERTICAL_ALIGN_SUB);
 static const VerticalAlign SUPER = const VerticalAlign(Style._VERTICAL_ALIGN_SUPER);
 static const VerticalAlign TOP = const VerticalAlign(Style._VERTICAL_ALIGN_TEXT_TOP);
 static const VerticalAlign TEXT_TOP = const VerticalAlign(Style._VERTICAL_ALIGN_BASELINE);
 static const VerticalAlign MIDDLE = const VerticalAlign(Style._VERTICAL_ALIGN_MIDDLE);
 static const VerticalAlign BOTTOM = const VerticalAlign(Style._VERTICAL_ALIGN_BOTTOM);
 static const VerticalAlign TEXT_BOTTOM = const VerticalAlign(Style._VERTICAL_ALIGN_TEXT_BOTTOM);
}

Extends

Enum<String> > VerticalAlign<String>

Static Properties

const VerticalAlign BASELINE #

static const VerticalAlign BASELINE = const VerticalAlign(Style._VERTICAL_ALIGN_BASELINE)

const VerticalAlign BOTTOM #

static const VerticalAlign BOTTOM = const VerticalAlign(Style._VERTICAL_ALIGN_BOTTOM)

const VerticalAlign MIDDLE #

static const VerticalAlign MIDDLE = const VerticalAlign(Style._VERTICAL_ALIGN_MIDDLE)

const VerticalAlign SUB #

static const VerticalAlign SUB = const VerticalAlign(Style._VERTICAL_ALIGN_SUB)

const VerticalAlign SUPER #

static const VerticalAlign SUPER = const VerticalAlign(Style._VERTICAL_ALIGN_SUPER)

const VerticalAlign TEXT_BOTTOM #

static const VerticalAlign TEXT_BOTTOM = const VerticalAlign(Style._VERTICAL_ALIGN_TEXT_BOTTOM)

const VerticalAlign TEXT_TOP #

static const VerticalAlign TEXT_TOP = const VerticalAlign(Style._VERTICAL_ALIGN_BASELINE)

const VerticalAlign TOP #

static const VerticalAlign TOP = const VerticalAlign(Style._VERTICAL_ALIGN_TEXT_TOP)

Constructors

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

Properties

final T value #

inherited from Enum
T get value => _value;