Interface IStyleSheetList
Interface IStyleSheetList
Namespace: Aspose.Html.Dom.Css
Assembly: Aspose.HTML.dll (25.2.0)
The StyleSheetList interface provides the abstraction of an ordered collection of style sheets.
[ComVisible(true)]
[DOMObject]
[DOMName("StyleSheetList")]
public interface IStyleSheetList : IEnumerable<icssstylesheet>, IEnumerable
Implements
IEnumerable<icssstylesheet>, IEnumerable
Properties
Length
The number of StyleSheets in the list. The range of valid child stylesheet indices is 0 to length-1 inclusive.
[DOMName("length")]
int Length { get; }
Property Value
this[int]
Used to retrieve a style sheet by method item(int index) accordind to http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/stylesheets.html.
[DOMName("item")]
ICSSStyleSheet this[int index] { get; }
Property Value
ICSSStyleSheet </icssstylesheet>