AngleSharp by Florian Rappl

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

.NET API 1,229,312 bytes

 IStyleUtilities

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