org.w3c.dom.css
Interface CSSValue
- CSSPrimitiveValue, CSSValueList
public interface CSSValue
- DOM Level 2
static short | CSS_CUSTOM - The value is a custom value.
|
static short | CSS_INHERIT - The value is inherited and the
cssText contains "inherit".
|
static short | CSS_PRIMITIVE_VALUE - The value is a primitive value and an instance of the
CSSPrimitiveValue interface can be obtained by using
binding-specific casting methods on this instance of the
CSSValue interface.
|
static short | CSS_VALUE_LIST - The value is a
CSSValue list and an instance of the
CSSValueList interface can be obtained by using
binding-specific casting methods on this instance of the
CSSValue interface.
|
CSS_CUSTOM
public static final short CSS_CUSTOM
The value is a custom value.
- 3
CSS_INHERIT
public static final short CSS_INHERIT
The value is inherited and the cssText
contains "inherit".
- 0
CSS_PRIMITIVE_VALUE
public static final short CSS_PRIMITIVE_VALUE
The value is a primitive value and an instance of the
CSSPrimitiveValue
interface can be obtained by using
binding-specific casting methods on this instance of the
CSSValue
interface.
- 1
CSS_VALUE_LIST
public static final short CSS_VALUE_LIST
The value is a CSSValue
list and an instance of the
CSSValueList
interface can be obtained by using
binding-specific casting methods on this instance of the
CSSValue
interface.
- 2
getCssText
public String getCssText()
A string representation of the current value.
getCssValueType
public short getCssValueType()
A code defining the type of the value as defined above.
setCssText
public void setCssText(String cssText)
throws DOMException