AngleSharp by AngleSharp

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

.NET API 1,223,680 bytes

 CssStrokeOpacityProperty

Information can be found on MDN: https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/stroke-opacity Gets the value that should be used for the stroke-opacity.
using AngleSharp.Css; using AngleSharp.Extensions; namespace AngleSharp.Dom.Css { internal sealed class CssStrokeOpacityProperty : CssProperty { private static readonly IValueConverter StyleConverter = Converters.NumberConverter.OrDefault(1); internal override IValueConverter Converter => StyleConverter; internal CssStrokeOpacityProperty() : base(PropertyNames.StrokeOpacity, PropertyFlags.Animatable) { } } }