StyleOptions
Transport object for evaluating stylesheets.
using AngleSharp.Dom;
namespace AngleSharp.Services.Styling
{
public sealed class StyleOptions
{
public IElement Element { get; set; }
public bool IsDisabled { get; set; }
public bool IsAlternate { get; set; }
public IBrowsingContext Context { get; set; }
public StyleOptions(IBrowsingContext context)
{
Context = context;
}
}
}