Interface IStyleSheetList
- Namespace
- AngleSharp.Dom
- Assembly
- AngleSharp.dll
Represents a list of stylesheet elements.
[DomName("StyleSheetList")]
public interface IStyleSheetList : IEnumerable<IStyleSheet>, IEnumerable
- Inherited Members
- Extension Methods
Properties
this[int]
Gets the stylesheet at the specified index. If index is greater than or equal to the number of style sheets in the list, this returns null.
[DomName("item")]
[DomAccessor(Accessors.Getter)]
IStyleSheet? this[int index] { get; }
Parameters
index
intThe index of the element.
Property Value
- IStyleSheet
The stylesheet.
Length
Gets the number of elements in the list of stylesheets.
[DomName("length")]
int Length { get; }