IStyleSheetList
Represents a list of stylesheet elements.
using AngleSharp.Attributes;
using System.Collections;
using System.Collections.Generic;
namespace AngleSharp.Dom
{
[DomName("StyleSheetList")]
public interface IStyleSheetList : IEnumerable<IStyleSheet>, IEnumerable
{
[DomName("item")]
[DomAccessor(Accessors.Getter)]
IStyleSheet this[int index] { get; }
[DomName("length")]
int Length { get; }
}
}