AngleSharp by AngleSharp

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

.NET API 1,214,976 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; } } }