AngleSharp by AngleSharp

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

.NET API 1,244,160 bytes

 IStyleUtilities

public interface IStyleUtilities
A set of useful methods for retrieving style information.
using AngleSharp.Attributes; namespace AngleSharp.Dom.Css { [DomNoInterfaceObject] [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; } } }