AngleSharp by AngleSharp

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

.NET API 1,230,336 bytes

 CssStrokeMiterlimitProperty

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