API Reference 0.3.24dart_web_toolkit_utilCursor<String>

Cursor<String> class

Enum for the cursor property.

class Cursor<String> extends Enum<String> {

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

 static const Cursor DEFAULT = const Cursor(Style._CURSOR_DEFAULT);
 static const Cursor AUTO = const Cursor(Style._CURSOR_AUTO);
 static const Cursor CROSSHAIR = const Cursor(Style._CURSOR_CROSSHAIR);
 static const Cursor POINTER = const Cursor(Style._CURSOR_POINTER);
 static const Cursor MOVE = const Cursor(Style._CURSOR_MOVE);
 static const Cursor E_RESIZE = const Cursor(Style._CURSOR_E_RESIZE);
 static const Cursor NE_RESIZE = const Cursor(Style._CURSOR_NE_RESIZE);
 static const Cursor NW_RESIZE = const Cursor(Style._CURSOR_NW_RESIZE);
 static const Cursor N_RESIZE = const Cursor(Style._CURSOR_N_RESIZE);
 static const Cursor SE_RESIZE = const Cursor(Style._CURSOR_SE_RESIZE);
 static const Cursor SW_RESIZE = const Cursor(Style._CURSOR_SW_RESIZE);
 static const Cursor S_RESIZE = const Cursor(Style._CURSOR_S_RESIZE);
 static const Cursor W_RESIZE = const Cursor(Style._CURSOR_W_RESIZE);
 static const Cursor TEXT = const Cursor(Style._CURSOR_TEXT);
 static const Cursor WAIT = const Cursor(Style._CURSOR_WAIT);
 static const Cursor HELP = const Cursor(Style._CURSOR_HELP);
 static const Cursor COL_RESIZE = const Cursor(Style._CURSOR_COL_RESIZE);
 static const Cursor ROW_RESIZE = const Cursor(Style._CURSOR_ROW_RESIZE);
}

Extends

Enum<String> > Cursor<String>

Static Properties

const Cursor AUTO #

static const Cursor AUTO = const Cursor(Style._CURSOR_AUTO)

const Cursor COL_RESIZE #

static const Cursor COL_RESIZE = const Cursor(Style._CURSOR_COL_RESIZE)

const Cursor CROSSHAIR #

static const Cursor CROSSHAIR = const Cursor(Style._CURSOR_CROSSHAIR)

const Cursor DEFAULT #

static const Cursor DEFAULT = const Cursor(Style._CURSOR_DEFAULT)

const Cursor E_RESIZE #

static const Cursor E_RESIZE = const Cursor(Style._CURSOR_E_RESIZE)

const Cursor HELP #

static const Cursor HELP = const Cursor(Style._CURSOR_HELP)

const Cursor MOVE #

static const Cursor MOVE = const Cursor(Style._CURSOR_MOVE)

const Cursor N_RESIZE #

static const Cursor N_RESIZE = const Cursor(Style._CURSOR_N_RESIZE)

const Cursor NE_RESIZE #

static const Cursor NE_RESIZE = const Cursor(Style._CURSOR_NE_RESIZE)

const Cursor NW_RESIZE #

static const Cursor NW_RESIZE = const Cursor(Style._CURSOR_NW_RESIZE)

const Cursor POINTER #

static const Cursor POINTER = const Cursor(Style._CURSOR_POINTER)

const Cursor ROW_RESIZE #

static const Cursor ROW_RESIZE = const Cursor(Style._CURSOR_ROW_RESIZE)

const Cursor S_RESIZE #

static const Cursor S_RESIZE = const Cursor(Style._CURSOR_S_RESIZE)

const Cursor SE_RESIZE #

static const Cursor SE_RESIZE = const Cursor(Style._CURSOR_SE_RESIZE)

const Cursor SW_RESIZE #

static const Cursor SW_RESIZE = const Cursor(Style._CURSOR_SW_RESIZE)

const Cursor TEXT #

static const Cursor TEXT = const Cursor(Style._CURSOR_TEXT)

const Cursor W_RESIZE #

static const Cursor W_RESIZE = const Cursor(Style._CURSOR_W_RESIZE)

const Cursor WAIT #

static const Cursor WAIT = const Cursor(Style._CURSOR_WAIT)

Constructors

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

Properties

final T value #

inherited from Enum
T get value => _value;