IDocumentStyle
Extends the document with further properties for styling.
using AngleSharp.Attributes;
namespace AngleSharp.Dom
{
[DomName("DocumentStyle")]
[DomNoInterfaceObject]
public interface IDocumentStyle
{
[DomName("styleSheets")]
IStyleSheetList StyleSheets { get; }
[DomName("selectedStyleSheetSet")]
string SelectedStyleSheetSet { get; set; }
[DomName("lastStyleSheetSet")]
string LastStyleSheetSet { get; }
[DomName("preferredStyleSheetSet")]
string PreferredStyleSheetSet { get; }
[DomName("styleSheetSets")]
IStringList StyleSheetSets { get; }
[DomName("enableStyleSheetsForSet")]
void EnableStyleSheetsForSet(string name);
}
}