Interface ICSSValueList
Interface ICSSValueList
Namespace: Aspose.Html.Dom.Css
Assembly: Aspose.HTML.dll (25.2.0)
The interface provides the abstraction of an ordered collection of CSS values.
[ComVisible(true)]
[DOMName("CSSValueList")]
[DOMObject]
public interface ICSSValueList
Properties
Length
The number of CSSValues in the list.
[DOMName("length")]
int Length { get; }
Property Value
this[int]
Method returns the Aspose.Html.Dom.Css.CSSValue at the specified index. http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/css.html#CSS-CSSValueList
[DOMName("item")]
CSSValue this[int index] { get; }