API Reference 0.3.24dart_web_toolkit_utilTextJustify<String>

TextJustify<String> class

Enum for the 'text-justify' CSS3 property.

class TextJustify<String> extends Enum<String> {

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

 static const TextJustify AUTO = const TextJustify(Style._TEXT_JUSTIFY_AUTO);
 static const TextJustify DISTRIBUTE = const TextJustify(Style._TEXT_JUSTIFY_DISTRIBUTE);
 static const TextJustify INTER_CLUSTER = const TextJustify(Style._TEXT_JUSTIFY_INTER_CLUSTER);
 static const TextJustify INTER_IDEOGRAPH = const TextJustify(Style._TEXT_JUSTIFY_INTER_IDEOGRAPH);
 static const TextJustify INTER_WORD = const TextJustify(Style._TEXT_JUSTIFY_INTER_WORD);
 static const TextJustify KASHIDA = const TextJustify(Style._TEXT_JUSTIFY_KASHIDA);
 static const TextJustify NONE = const TextJustify(Style._TEXT_JUSTIFY_NONE);
}

Extends

Enum<String> > TextJustify<String>

Static Properties

const TextJustify AUTO #

static const TextJustify AUTO = const TextJustify(Style._TEXT_JUSTIFY_AUTO)

const TextJustify DISTRIBUTE #

static const TextJustify DISTRIBUTE = const TextJustify(Style._TEXT_JUSTIFY_DISTRIBUTE)

const TextJustify INTER_CLUSTER #

static const TextJustify INTER_CLUSTER = const TextJustify(Style._TEXT_JUSTIFY_INTER_CLUSTER)

const TextJustify INTER_IDEOGRAPH #

static const TextJustify INTER_IDEOGRAPH = const TextJustify(Style._TEXT_JUSTIFY_INTER_IDEOGRAPH)

const TextJustify INTER_WORD #

static const TextJustify INTER_WORD = const TextJustify(Style._TEXT_JUSTIFY_INTER_WORD)

const TextJustify KASHIDA #

static const TextJustify KASHIDA = const TextJustify(Style._TEXT_JUSTIFY_KASHIDA)

const TextJustify NONE #

static const TextJustify NONE = const TextJustify(Style._TEXT_JUSTIFY_NONE)

Constructors

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

Properties

final T value #

inherited from Enum
T get value => _value;