Interface CSSOMStyleDeclaration.ValueProvider

All Known Implementing Classes:
CSSOMStoredStyleDeclaration, SVGStylableElement.OverrideStyleDeclaration, SVGStylableElement.StyleDeclaration
Enclosing class:
CSSOMStyleDeclaration

public static interface CSSOMStyleDeclaration.ValueProvider
To provides the values.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the length of the declaration.
    Returns the text of the declaration.
    Returns the current value associated with this object.
    boolean
    Tells whether the given property is important.
    item(int idx)
    Returns the value at the given.
  • Method Details

    • getValue

      Value getValue(String name)
      Returns the current value associated with this object.
    • isImportant

      boolean isImportant(String name)
      Tells whether the given property is important.
    • getText

      String getText()
      Returns the text of the declaration.
    • getLength

      int getLength()
      Returns the length of the declaration.
    • item

      String item(int idx)
      Returns the value at the given.