Interface ICSSValueList
Interface ICSSValueList
Namespace: Aspose.Svg.Dom.Css
Assembly: Aspose.SVG.dll (25.5.0)
The interface provides the abstraction of an ordered collection of CSS values.
[DOMName("CSSValueList")]
[DOMObject]
[ComVisible(true)]
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.Svg.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; }