AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.10" />

.NET API 1,230,336 bytes

 IStyleUtilities

public interface IStyleUtilities
A set of useful methods for retrieving style information.
using AngleSharp.Attributes; namespace AngleSharp.Dom.Css { [DomName("GetStyleUtils")] [DomNoInterfaceObject] public interface IStyleUtilities { [DomName("cascadedStyle")] ICssStyleDeclaration CascadedStyle { get; } [DomName("defaultStyle")] ICssStyleDeclaration DefaultStyle { get; } [DomName("rawComputedStyle")] ICssStyleDeclaration RawComputedStyle { get; } [DomName("usedStyle")] ICssStyleDeclaration UsedStyle { get; } } }