AngleSharp by AngleSharp

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

.NET API 1,214,976 bytes

 CssTextDecorationProperty

More information available: https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration
using AngleSharp.Css; using AngleSharp.Extensions; namespace AngleSharp.Dom.Css { internal sealed class CssTextDecorationProperty : CssShorthandProperty { private static readonly IValueConverter StyleConverter = Converters.WithAny(Converters.ColorConverter.Option().For(PropertyNames.TextDecorationColor), Converters.TextDecorationStyleConverter.Option().For(PropertyNames.TextDecorationStyle), Converters.TextDecorationLinesConverter.Option().For(PropertyNames.TextDecorationLine)).OrDefault(); internal override IValueConverter Converter => StyleConverter; internal CssTextDecorationProperty() : base(PropertyNames.TextDecoration, PropertyFlags.Animatable) { } } }