API Reference 0.3.24dart_web_toolkit_i18nVerticalAlignmentConstant

VerticalAlignmentConstant class

Horizontal alignment constant.

class VerticalAlignmentConstant {

 final String _verticalAlignString;

 const VerticalAlignmentConstant(this._verticalAlignString);

 /**
  * Gets the CSS 'vertical-align' string associated with this constant.
  *
  * @return the CSS 'vertical-align' value
  */
 String getVerticalAlignString() {
   return _verticalAlignString;
 }
}

Constructors

const VerticalAlignmentConstant(String _verticalAlignString) #

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 VerticalAlignmentConstant(this._verticalAlignString);

Methods

String getVerticalAlignString() #

Gets the CSS 'vertical-align' string associated with this constant.

@return the CSS 'vertical-align' value

String getVerticalAlignString() {
 return _verticalAlignString;
}