API Reference 0.3.24dart_web_toolkit_utilTableLayout<String>

TableLayout<String> class

Enum for the table-layout property.

class TableLayout<String> extends Enum<String> {

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

 static const TableLayout AUTO = const TableLayout(Style._TABLE_LAYOUT_AUTO);
 static const TableLayout FIXED = const TableLayout(Style._TABLE_LAYOUT_FIXED);
}

Extends

Enum<String> > TableLayout<String>

Static Properties

const TableLayout AUTO #

static const TableLayout AUTO = const TableLayout(Style._TABLE_LAYOUT_AUTO)

const TableLayout FIXED #

static const TableLayout FIXED = const TableLayout(Style._TABLE_LAYOUT_FIXED)

Constructors

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

Properties

final T value #

inherited from Enum
T get value => _value;