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