OutlineStyle enum

The style of an element's outline. An outline is a line that is drawn around an element, outside the border.

Read more: MDN outline-style

Inheritance
Available extensions

Values

auto → const OutlineStyle

Permits the user agent to render a custom outline style.

const OutlineStyle('auto')
none → const OutlineStyle

No outline is used. The outline-width is 0.

const OutlineStyle('none')
dotted → const OutlineStyle

The outline is a series of dots.

const OutlineStyle('dotted')
dashed → const OutlineStyle

The outline is a series of short line segments.

const OutlineStyle('dashed')
solid → const OutlineStyle

The outline is a single line.

const OutlineStyle('solid')
double → const OutlineStyle

The outline is two single lines. The outline-width is the sum of the two lines and the space between them.

const OutlineStyle('double')
groove → const OutlineStyle

The outline looks as though it were carved into the page.

const OutlineStyle('groove')
ridge → const OutlineStyle

The opposite of groove: the outline looks as though it were extruded from the page.

const OutlineStyle('ridge')
inset → const OutlineStyle

The outline makes the box look as though it were embedded in the page.

const OutlineStyle('inset')
outset → const OutlineStyle

The opposite of inset: the outline makes the box look as though it were coming out of the page.

const OutlineStyle('outset')
inherit → const OutlineStyle
const OutlineStyle('inherit')
initial → const OutlineStyle
const OutlineStyle('initial')
revert → const OutlineStyle
const OutlineStyle('revert')
revertLayer → const OutlineStyle
const OutlineStyle('revert-layer')
unset → const OutlineStyle
const OutlineStyle('unset')

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value String
The css value
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<OutlineStyle>
A constant List of the values in this enum, in order of their declaration.