@DOMObjectAttribute @DOMNameAttribute(name="CSSValueList") @DOMIndexerAttribute(indexerType="CSSValue") public interface ICSSValueList extends IDOMCollectionIndexer<CSSValue>
The interface provides the abstraction of an ordered collection of CSS values.
Modifier and Type | Method and Description |
---|---|
CSSValue |
get_Item(int index)
Method returns the
CSSValue at the specified index. |
int |
getLength()
The number of CSSValues in the list.
|
@DOMNameAttribute(name="length") int getLength()
The number of CSSValues in the list.
@DOMNameAttribute(name="item") CSSValue get_Item(int index)
Method returns the CSSValue
at the specified index.
http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/css.html#CSS-CSSValueList
get_Item
in interface IDOMCollectionIndexer<CSSValue>
index
- The index.
Value:
The CSSValue
.