AngleSharp by AngleSharp

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

.NET API 1,224,704 bytes

 CssStrokeLinecapProperty

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