AngleSharp by AngleSharp

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

.NET API 1,223,680 bytes

 CssTextDecorationLineProperty

Information: https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-line Gets the enumeration over all selected styles for text decoration lines.
using AngleSharp.Css; using AngleSharp.Extensions; namespace AngleSharp.Dom.Css { internal sealed class CssTextDecorationLineProperty : CssProperty { private static readonly IValueConverter ListConverter = Converters.TextDecorationLinesConverter.OrDefault(); internal override IValueConverter Converter => ListConverter; internal CssTextDecorationLineProperty() : base(PropertyNames.TextDecorationLine, PropertyFlags.None) { } } }